public static void Main()
Console.WriteLine(user.Name);
User tom = new User { Name = "Tom", Auto = new Auto { Name = "Ford" } };
var student = new { tom.Auto.Name, age};
Console.WriteLine(student.Name);
public string Name { get; set; }
public string Name { get; set; }
public Auto Auto { get; set; }