본문 바로가기

프로그래밍 언어 노트/C#

[C#] 7.0 새로운 기능 out과 함께 초기화

class Program
{
public static void OutTest(out int arg)
{
arg = 0;
}
static void Main(string[] args)
{
int before; //선언
OutTest(out before); //Out
OutTest(out var a); //선언과함께 초기화 가능, Var도 가능
Console.WriteLine(a);

}
}


728x90