C#匿名函数和Lambda表达式

回眸只為那壹抹淺笑 提交于 2020-01-17 10:06:25
 class Program
    {
        delegate void MyDelegate(string str);
        static void Main(string[] args)
        {
            //正常调用
            MyDelegate myDelegate = new MyDelegate(CW);
            myDelegate("正常调用");

            //匿名函数
            MyDelegate myDelegate2 = delegate (string str) { Console.WriteLine(str); };
            myDelegate("匿名函数");

            //Lambda表达式
            MyDelegate myDelegate3 = (string str) => { Console.WriteLine(str); };
            myDelegate3("Lambda表达式");

            Console.ReadKey();
        }

        static void CW(string str)
        {
            Console.WriteLine(str);
        }
    }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!