Exemple #1
0
 public void Clone(CommentInfo info)
 {
     foreach (PropertyInfo info2 in base.GetType().GetProperties())
     {
         info2.SetValue(this, info2.GetValue(info, null), null);
     }
 }
Exemple #2
0
 public CommentInfo(CommentInfo info)
 {
     this.Clone(info);
 }
Exemple #3
0
 public CommentDAC(CommentInfo info)
     : base(info)
 {
 }