1
仍圍繞着我的頭圍繞代表和我很好奇:是否有可能超載匿名函數?重載匿名函數
這樣的:
delegate void Output(string x, int y);
支持:
Output show = (x, y) => Console.WriteLine("{0}: {1}", x.ToString(), y.ToString());
和:
delegate void Output(string x, string y);
允許:
show("ABC", "EFG");
And:
show("ABC", 123);