共有两种匿名函数,以下主题中分别讨论了这些函数:
-
Lambda Expressions (C# Programming Guide). ‘ data-guid="7df86c4348dea57abb774138a7de05b8">Lambda 表达式(C# 编程指南) .
-
匿名方法(C# 编程指南)
说明 Lambda 表达式可以绑定到表达式树,也可以绑定到委托。
C# 中委托的发展
在 C# 1.0 中,您通过使用在代码中其他位置定义的方法显式初始化委托来创建委托的实例。 C# 2.0 引入了匿名方法的概念,作为一种编写可在委托调用中执行的未命名内联语句块的方式。 C# 3.0 引入了 Lambda 表达式,这种表达式与匿名方法的概念类似,但更具表现力并且更简练。 anonymous functions.‘ data-guid="2cfbe69029bb91c216249bdc1f183492">这两个功能统称为“匿名函数”。 通常,针对 .NET Framework 版本 3.5 及更高版本的应用程序应使用 Lambda 表达式。
下面的示例演示了从 C# 1.0 到 C# 3.0 委托创建过程的发展:
C#
class Test { delegate void TestDelegate(string s); static void M(string s) { Console.WriteLine(s); } static void Main(string[] args) { // Original delegate syntax required // initialization with a named method.
//原始的委托,需要初始化一个带名称的方法 TestDelegate testDelA = new TestDelegate(M); // C# 2.0: A delegate can be initialized with // inline code, called an "anonymous method." This // method takes a string as an input parameter.
//C#2.0之后,只需写入:DELEGATE(参数列表){方法} TestDelegate testDelB = delegate(string s) { Console.WriteLine(s); }; // C# 3.0. A delegate can be initialized with // a lambda expression. The lambda also takes a string // as an input parameter (x). The type of x is inferred by the compiler.
//C#3.0之后,只需写入无类型的X和方法 (参数值)=>{方法} TestDelegate testDelC = (x) => { Console.WriteLine(x); }; // Invoke the delegates. testDelA("Hello. My name is M and I write lines."); testDelB("That‘s nothing. I‘m anonymous and "); testDelC("I‘m a famous author."); // Keep console window open in debug mode. Console.WriteLine("Press any key to exit."); Console.ReadKey(); } } /* Output: Hello. My name is M and I write lines. That‘s nothing. I‘m anonymous and I‘m a famous author. Press any key to exit. */
转载自:http://msdn.microsoft.com/zh-cn/library/bb882516.aspx