Ejemplo n.º 1
0
 public AnotherPerson(AnotherPerson other)
 {
     Names = new string[other.Names.Length];
     Array.Copy(other.Names, Names, other.Names.Length);
     Address = new AnotherAddress(other.Address);
 }
Ejemplo n.º 2
0
 public AnotherPerson(string[] names, AnotherAddress address)
 {
     Names   = names;
     Address = address;
 }