摘要: Func test = delegate(string s) { return s + "end"; }; Console.WriteLine(test("llllll")); Func test1 = param => { return "start" + param; }; Console.Wr... 阅读全文
posted @ 2017-11-15 13:20 Quintinz 阅读(167) 评论(0) 推荐(0)