激昂小海豚

文章
8
资源
0
加入时间
2年10月24天

C# 匿名函数1、匿名函数2、基本语法3、使用4、匿名函数的缺点

1、匿名函数没有名字的函数,主要是配合委托和事件进行使用,脱离委托和事件是不会使用匿名函数的2、基本语法delegate (参数列表){ //函数逻辑};何时使用?(1)函数中传递委托参数时(2)委托和事件赋值时3、使用(1)无参无返回Action a = delegate () { Console.WriteLine("匿名函数");};a();(2)有参Action<int> a = delegate (...