public static void Main()
StreetAddress1 = "74 Maple Street",
StreetAddress2 = "Apt 5",
Console.WriteLine(john.ToString());
public string FirstName { get; set; }
public string MiddleName { get; set; }
public string LastName { get; set; }
public Address Address { get; set; }
public sealed override string ToString()
return $"{FirstName} {MiddleName} {LastName}";
public string StreetAddress1 { get; set; }
public string StreetAddress2 { get; set; }
public string StreetAddress3 { get; set; }
public string City { get; set; }
public string State { get; set; }
public string Country { get; set; }
public string ZipCode { get; set; }