给自己出的一道分析题
class Program { delegate int Add(int i); private static void wridAdd(Add a) { Console.WriteLine(a(1 + 2)); } static void Main(string[] args) { wridAdd(n => n + 1); Console.Read(); } }
这个代码有意思! 对于只会.Net 2.0 的同学来说,难度不要太大!
本文来自博客园,作者:兴想事成,转载请注明原文链接:https://www.cnblogs.com/mjxxsc/p/4122261.html