보관함

csharp 몇몇 코드 단순화

in 매개 변수

// 여기서의 in은 ref readonly처럼 작동함 함수 call시에는 in을 쓰거나 말거나 동일 void PrintDate(in DateTime date) { Console.WriteLine(date); }

null 관련 연산자

// 오래전 instance = instance == null ? value : instance; // 기존 instance = instance ?? value; // 현재 instance ??= value;

Auto Property

// C# 6.0 Auto […]