Expression-bodied function members efficiency and performance in C# 6.0

前端 未结 2 1723
遇见更好的自我
遇见更好的自我 2020-11-28 10:49

In a new C# 6.0 we can define methods and properties using lambda expressions.

For instance this property

public string Name { get { return First + \         


        
2条回答
  •  一个人的身影
    2020-11-28 11:23

    They will compile down to the same IL, you can always test this yourself by doing it and using ildasm to extract the IL.

提交回复
热议问题