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
public bool property {
get {
return method();
}
}
Similar syntax works for methods, too:
public int TwoTimes(int number) => 2 * number;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…