Exemplo n.º 1
0
 public ContactInfo(ContactInfo info)
 {
     this.Clone(info);
 }
Exemplo n.º 2
0
 public Contact(ContactInfo info)
     : base(info)
 {
 }
Exemplo n.º 3
0
 public void Clone(ContactInfo info)
 {
     foreach (PropertyInfo info2 in base.GetType().GetProperties())
     {
         info2.SetValue(this, info2.GetValue(info, null), null);
     }
 }