Beispiel #1
0
 public Person(string[] names, Adress adress)
 {
     Names  = names;
     Adress = adress;
 }
Beispiel #2
0
 public Person(Person other)
 {
     Names  = other.Names;
     Adress = new Adress(other.Adress);
 }
Beispiel #3
0
 public Adress(Adress otherAdress)
 {
     StreetName  = otherAdress.StreetName;
     HouseNumber = otherAdress.HouseNumber;
 }