c# named parameter
[C#] Named, Optional Parameter
1. 명명된 매개 변수 (Named Parameter) using System; class Program { public static void Main() { SetRect(10, 20, 30, 40); } } SetRect라는 함수가 어딘가에 있고 메인에서 가져다 쓴다고 해보자. 인자를 4개를 받는데 이 4개의 인자가 무슨 역할을 하는지는 모른다. 어떤게 x이고, y이고 각 변의 길이인지, 무엇인지 전혀 모른다. 이럴 경우 함수를 호출할 때 각 인자의 이름을 정해줄 수 있다. using System; class Program { public static void Main() { SetRect(x : 10, y : 20, width : 30, height : 40); } public static void..