namespace Lesson14_匿名函数练习 { class Program { static void Main(string[] args) { Func func = Dosomething(3); int result = func(2); Console.WriteLine(result); } public static Func Dosomething(int value) { return delegate (int x) { return value * x; }; } } }