How would you write code for an integer property called Age with a getter and setter?
public int Age: get set;
public int Age { get; set; } Official documentation: Using Properties
public int Age { get - set }
public int Age (get, set );