Example #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);
 }
Example #2
0
 public AnotherPerson(string[] names, AnotherAddress address)
 {
     Names   = names;
     Address = address;
 }