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

C#复习

时间:2017-04-07 18:12:45      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:logs   void   时间   blog   st3   工具   ble   test   line   

由于前段时间为了写工具学的太J8粗糙  加上最近一段时间太浮躁 所以静下心来复习 一遍以前学的很弱的一些地方

1 委托
        public delegate double weituo(double a, double b);
        public static double test1(double a,double b)
        {
            return a * b;
        }
        public static double test2(double a,double b)
        {
            return a / b;
        }
        public static void test3(weituo test)
        {
            Console.WriteLine(test(2.5, 0.5));
        }
        static void Main(string[] args)
        {
            //weituo test;
            //test = test2;
            //test3(test);            
        }

 

 

C#复习

标签:logs   void   时间   blog   st3   工具   ble   test   line   

原文地址:http://www.cnblogs.com/test404/p/6679327.html

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