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