标签:
最基本的 Lambda 表达式语法:
(参数列表)=>{方法体}
说明:
class Program { public delegate string trans(string s); static void Main(string[] args) { string s = "abcdEFGH"; trans tran = (string str) => { return str.Substring(0, 1).ToUpper() + str.Substring(1).ToLower(); }; Console.WriteLine(tran(s)); Console.Read(); } }
标签:
原文地址:http://www.cnblogs.com/tuokid/p/4528621.html