I came across some code that said
public int MaxHealth =>
Memory[Address].IsValid ?
Memory[Address].Read(Offs.Life.MaxHp)
One other significant point if you're using C# 6:
'=>' can be used instead of 'get' and is only for 'get only' methods - it can't be used with a 'set'.
For C# 7, see the comment from @avenmore below - it can now be used in more places. Here's a good reference - https://csharp.christiannagel.com/2017/01/25/expressionbodiedmembers/