首页 > 代码库 > C#复习

C#复习

由于前段时间为了写工具学的太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#复习