This is an expression-bodied property, a new syntax for computed properties introduced in C# 6, which lets you create computed properties in the same way as you would create a lambda expression. This syntax is equivalent to
As some mentioned this is a new feature brought first to C# 6, they extended its usage in C# 7.0 to use it with getters and setters, you can also use the expression bodied syntax with methods like this:
static bool TheUgly(int a, int b)
{
if (a > b)
return true;
else
return false;
}
static bool TheNormal(int a, int b)
{
return a > b;
}
static bool TheShort(int a, int b) => a > b; //beautiful, isn't it?
That is a expression bodied property. It can be used as a simplification from property getters or method declarations.
From C# 7 it was also expanded to other member types like constructors, finalizers, property setters and indexers.
"Expression body definitions let you provide a member's implementation in a very concise, readable form. You can use an expression body definition whenever the logic for any supported member, such as a method or property, consists of a single expression."
That's an expression bodied property. See MSDN for example. This is just a shorthand for
Expression bodied functions are also possible:
It's the expression bodied simplification.
Reference; https://msdn.microsoft.com/en-us/magazine/dn802602.aspx
This is an expression-bodied property, a new syntax for computed properties introduced in C# 6, which lets you create computed properties in the same way as you would create a lambda expression. This syntax is equivalent to
Similar syntax works for methods, too:
As some mentioned this is a new feature brought first to C# 6, they extended its usage in C# 7.0 to use it with getters and setters, you can also use the expression bodied syntax with methods like this:
=>
used in property is anexpression body
. Basically a shorter and cleaner way to write a property with onlygetter
.Is translated to
It's much more simpler and readable but you can only use this operator from C# 6 and here you will find specific documentation about expression body.
That is a expression bodied property. It can be used as a simplification from property getters or method declarations. From C# 7 it was also expanded to other member types like constructors, finalizers, property setters and indexers.
Check the MSDN documentation for more info.
"Expression body definitions let you provide a member's implementation in a very concise, readable form. You can use an expression body definition whenever the logic for any supported member, such as a method or property, consists of a single expression."