That's an expression bodied property. See MSDN for example.
This is just a shorthand for
public bool property
{
get
{
return method();
}
}
Expression bodied functions are also possible:
public override string ToString() => string.Format("{0}, {1}", First, Second);