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

委托和匿名委托

时间:2015-06-26 22:18:58      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

 public delegate void del();
            del d = Func;
            d.Invoke();
 public static void Func()
        {
            Console.WriteLine("i am delegate");
        }


 //无返回值
            Action<string> a1 = delegate(string a) { Console.WriteLine("I am action :{0}", a); };
            Action<string> a2 = (a => { Console.WriteLine("I am action :{0}",a); });
            a1.Invoke("");
            
           
            //有返回值
            Func<string> f = () => { return ""; };
            Func<string, string> f1 = a => { return a; };

            string re = f.Invoke();
            string re1 = f1.Invoke("");

            //返回bool
            Predicate<int> pr = a =>
            {
                if (a % 2 == 0)
                { return true; }
                else
                { return false; }
            };

 

委托和匿名委托

标签:

原文地址:http://www.cnblogs.com/tgdjw/p/4603236.html

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