首页 > Windows开发 > 详细

c#中的委托使用(方法的调用, 和类的实话)

时间:2015-02-09 00:43:43      阅读:330      评论:0      收藏:0      [点我收藏+]
方法的调用
    delegate int test1(int a);
    class Program
    {
       
     
        static int num = 10;
        static void Main(string[] args)
        {
            test1 t = new test1(max);
            t(40);
            Console.WriteLine("max,{0}", num);
            Console.ReadLine();
        }
        public static int max(int a)
        {
            num += a;
            return num;
        }
    }
类额实例化

    class  weituo {
        public   int num = 10;
        //非静态
        public  int max(int a)
        {
            num += a;
            return num;
        }
        
    }

Main ()
{
     weituo wt = new weituo();
            test1 t1 = new test1(wt.max);
            t1(50);
} 

 

c#中的委托使用(方法的调用, 和类的实话)

原文:http://www.cnblogs.com/codemouserman/p/4280681.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!