csharp 表达Lambda

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 表达Lambda相关的知识,希望对你有一定的参考价值。

// General form of a lambda expression:
// (input-parameters) => expression

//The parentheses are optional only if the lambda has one input parameter; eg..
x => x * x

// otherwise they are required. Two or more input parameters are separated by commas enclosed in parentheses:
(x, y) => x == y

// Sometimes it is difficult or impossible for the compiler to infer the input types. When this occurs, 
// you can specify the types explicitly
(int x, string s) => s.Length > x

// Specify zero input parameters with empty parentheses:
() => SomeMethod()

以上是关于csharp 表达Lambda的主要内容,如果未能解决你的问题,请参考以下文章

csharp C#使用Lambda表达式为动态类型和动态属性排序通用列表

lambda表达式

csharp 使用lambda的小组

csharp Lambda连接表

csharp 致电AWS Lambda

csharp 加入LINQ和Lambda