C# 기본적으로 알아야 할 사항
https://docs.microsoft.com/ko-kr/dotnet/csharp/programming-guide/inside-a-program/coding-conventions [개체 이니셜라이저 사용] // Object initializer. var instance3 = new ExampleClass { Name = "Desktop" , ID = 37414 , Location = "Redmond" , Age = 2.3 }; // Default constructor and assignment statements. var instance4 = new ExampleClass(); instance4.Name = "Desktop" ; instance4.ID = 37414 ; instance4.Location = "Redmond" ; instance4.Age = 2.3 ; [배열을 사용할때 참고] // Preferred syntax. Note that you cannot use var here instead of string[]. string [] vowels1 = { "a" , "e" , "i" , "o" , "u" }; // If you use explicit instantiation, you can use var. var vowels2 = new string [] { "a" , "e" , "i" , "o" , "u" }; // If you specify an array size, you must initialize the elements one at a time. var vowels3 = new string [ 5 ]; vowels3[ 0 ] = ...