写一个lambda表达式而不是偶然方法之间的区别

时间:2017-11-16 17:55:01

标签: c# lambda

我想知道Foo1()和Foo2()方法之间的区别是什么:

class MyClass
{
    public void Foo1() => Console.WriteLine("Something");
    public void Foo2() { Console.WriteLine("Something"); }
}

0 个答案:

没有答案