日期:2014-05-18 浏览次数:20658 次
Lambda 表达式”是一个匿名函数,它可以包含表达式和语句,并且可用于创建委托或表达式树类型。
所有 Lambda 表达式都使用 Lambda 运算符 =>,该运算符读为“goes to”。 该 Lambda 运算符的左边是输入参数(如果有),右边包含表达式或语句块。
Lambda表达式的基本形式是:
(explicitly-typed-parameter-list) => { statements }
(string text) => { return text.Length; };
(explicitly-typed-parameter-list) => expression
(string text) => text.Length
(implicitly-typed-parameter-list) => expression
(text) => text.Length
parameter-name => expression
text => text.Length