标签:
static void Main(string[] args) { Lamda(); Console.ReadLine(); } delegate int del(int i); private static void Lamda() { //()=>expression 当只有一个参数的时候可以不写括号 del mydelegate = x => x * x; Console.WriteLine(mydelegate(5)); }
左边参数 右边方法体
标签:
原文地址:http://www.cnblogs.com/handsomer/p/4560465.html