举例说明匿名方法

2016-06-11  本文已影响0人  目标肢解

其实匿名方法本身还是有名字的,只是我们并不关心它究竟该取什么名字,因而.NET帮我们随便取了个名字罢了。

class Program

{

public delegate void Printer(string s);

static void Main(string[] args)

{

Printer printer = delegate (string s)

{

Console.WriteLine("我是匿名方法:" + s);

};

printer("你好");

Console.ReadLine();

}

}

上一篇 下一篇

猜你喜欢

热点阅读