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