#C# Properties
Properties are getters & setters but well done.
They require minimal code for setup:
public int MyProperty {get;set;}
This declares a completely functional property. The compiler generates the member to store the property data automatically.