码迷,mamicode.com
首页 > 其他好文 > 详细

给自己出的一道分析题

时间:2014-11-26 01:14:56      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   on   div   log   代码   

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 的同学来说,难度不要太大!

给自己出的一道分析题

标签:style   blog   ar   color   sp   on   div   log   代码   

原文地址:http://www.cnblogs.com/LittleMing/p/4122261.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!