Esempio n. 1
0
 public override object Clone()
 {
     UMTSTplCell cell = new UMTSTplCell();
     PropertyInfo[] properties = base.GetType().GetProperties();
     foreach (PropertyInfo info in properties)
     {
         object obj2 = info.GetValue(this, null);
         info.SetValue(cell, obj2, null);
     }
     return cell;
 }
Esempio n. 2
0
 public TemplateUMTSCellModule(UMTSTplCell TplCell)
 {
     base.ParentTplCell = TplCell;
     this.m_TplCell = TplCell;
 }
Esempio n. 3
0
 public TemplateUmtsDesc(UMTSTplCell tplUmtsEntity)
 {
     this.m_Entity = tplUmtsEntity;
 }