무명
C# 람다식 (lambda expression)
람다식은 무명 메소드이다. IEnumerable, Action, Function 등등에 유용하게 쓰일 수가 있다. using System; using System.Collections.Generic; using System.Runtime.InteropServices; using System.Linq; namespace ConsoleApplication1 { public delegate int TwoParamIntDele(int LVal, int RVal); public class A { public int Val = 0; public A() { } public A(int AnotherVal) { Val = AnotherVal; } } public class Test { public TwoParamIntD..