public string Name { get; set; }
public int Age { get; set; }
public Person(string name, int age)
public static void Main()
Person p1 = new Person("Wallace", 75);
Person p2 = new Person(null, 42);
string t = p2.Name ?? "is null";
Console.WriteLine(p1.Name ?? "is null");