public Person(Person other) { Names = new string[other.Names.Length]; other.Names.CopyTo(Names, 0); Adress = new Adress(other.Adress); }
public Adress(Adress other) { streetName = other.streetName; houseNumber = other.houseNumber; }
public Person(string[] names, Adress address) { this.Names = names; this.Adress = address; }