lambda表达式不使用委托(delegate) 用FUNC

lLambda不使用delegate关键字,而使用  Lambda运算符 => goes to
l    1.Func<int,string> getInput = (int age) => {
l         return Console.ReadLine() + age;
l    };
l可以不显示声明参数的数据类型(编译器可以根据委托参数推断)
l    2.Func<int,string> getInput = (age) => {
l         return Console.ReadLine() + age;
l    };
posted @ 2015-08-18 16:03  花神华安  阅读(192)  评论(0编辑  收藏  举报