示例#1
0
 protected void Clone(Account info)
 {
     foreach (PropertyInfo property in base.GetType().GetProperties())
     {
         property.SetValue(this, property.GetValue(info, null), null);
     }
 }
示例#2
0
 public void SetClone(Account account)
 {
     base.Clone(account);
 }
示例#3
0
 public Account(Account info)
 {
     this.Clone(info);
 }