委托-匿名方法

白昼怎懂夜的黑 提交于 2019-12-06 12:27:06

一,无参数无返回

namespace 委托
{
    class Program
    {
        public delegate void Method();
        static void Main(string[] args)
        {
            Method method = delegate ()
              {
                  Console.WriteLine("----无参数返回----");
              };
            //使用方法
            method();
            Console.Read();
        }

    }
}

二,无参数有返回

namespace 委托
{
    class Program
    {
        public delegate void Method(int a);
        static void Main(string[] args)
        {
            Method method = delegate (int a)
              {
                  Console.WriteLine($"{a}");
              };
            //使用方法
            method(10);
            Console.Read();
        }

    }
}

三,有参数有返回

namespace 委托
{
    class Program
    {
        public delegate int  Method(int a);
        static void Main(string[] args)
        {
            Method method = delegate (int a)
              {
                  return a;
              };
            //使用方法
            int result= method(10);
            Console.WriteLine(result);
            Console.Read();
        }

    }
}

  

  

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!