zoukankan      html  css  js  c++  java
  • 匿名方法与委托关联调用实例

                 1:使用委托的方法:

             delegate int MyDelegate(int i);

            static void Main(string[] args)

            {

                MyDelegate mydel = new MyDelegate(a);

                int b=mydel(1);

                Console.WriteLine(b);

                Console.ReadKey();

            }



            public static int a(int i)

            {

                Console.WriteLine("Hello kiddle" + i.ToString());

                return i + 2;

            }

               2:使用匿名方法:

            delegate int MyDelegate(int i);

            static void Main(string[] args)

            {

                MyDelegate mydel = new MyDelegate(a);

                int b=mydel(1);

                Console.WriteLine(b);

                Console.ReadKey();

            }



            public static int a(int i)

            {

                Console.WriteLine("Hello kiddle" + i.ToString());

                return i + 2;

            }

  • 相关阅读:
    link和@import区别
    常用的正则表达式
    virtual dom
    git常用命令
    系统管理与进程命令
    Shell 命令
    软件安装命令
    vim 详解
    网络命令
    帮助与用户管理命令
  • 原文地址:https://www.cnblogs.com/wangyhua/p/4050625.html
Copyright © 2011-2022 走看看