public static void Main()
var p = new Person("Johny", 23);
Console.WriteLine(p.Reset);
var p2 = new Person("Johny");
Console.WriteLine(p2.Age);
Console.WriteLine(p2.Reset);
public Person(string name, int age) : this() {
public Person(string name) : this(name, 67){
public string Name {get;set;}
public int Age {get;set;}
public bool Reset {get;set;}