CS 6
read-only auto properties
Small help with immutable types...
// private readonly int _age;
// public int Age { get { return _age; } }
public int Age { get; }
Small help with immutable types...
// private readonly int _age;
// public int Age { get { return _age; } }
public int Age { get; }