码迷,mamicode.com
首页 > Windows程序 > 详细

C#委托------匿名方法

时间:2015-09-11 15:58:28      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

namespace out_ref
{
   //委托匿名方法
    public delegate void Myadd();
    class Program
    {
        static void Main(string[] args)
        {
            Say(delegate() { Console.WriteLine("哈哈,就是这么帅!"); });
            Console.ReadKey();

        }

        static void Say(Myadd myadd)
        {
            myadd();
        }
       
    }
}

 

//委托匿名方法 求两个数之和
   public delegate int Myadd(int n1,int n2);
    class Program
    {
        static void Main(string[] args)
        {
            int a = Sum(delegate(int n1, int n2) { return n1 + n2; });
            Console.WriteLine(a);
            Console.ReadKey();
        }

        static int Sum(Myadd myadd)
        {
            return myadd(10,20);
        }
       
    }
 //委托匿名方法 求两个数之和(2)
    public delegate int Myadd(int n1, int n2);
    class Program
    {
        static void Main(string[] args)
        {
            Myadd add = delegate(int n1, int n2) { return n1 + n2; };
            int sum = add(10, 20);
            Console.WriteLine(sum);
            Console.ReadKey();
        }



    }

 

C#委托------匿名方法

标签:

原文地址:http://www.cnblogs.com/phpweige/p/4800977.html

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