익명 메서드는 이름이 없는 메서드입니다. 델리게이트를 선언하고 델리게이트의 인스턴스가 익명 메서드를 참조시키면 델리게이트의 인스턴스를 호출하면 참조하고 있던 익명 메서드를 실행할 수 있습니다. delegate int Calculate(int a, int b); public static void Main() { Calculate Calc; Calc = delegate(int a, int b) { return a + b; }; Console.WriteLine("3 + 4: {0}", Calc(3,4)); } 익명 메서드는 delegate 키워드를 사용하여 선언합니다. 델리게이트 인스턴스 = delegate(매개변수 목록) { // 실행 코드 } 익명 메서드는 참조할 델리게이트의 형식과 동일한 형식으로 선언되..