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; }
public TemplateUMTSCellModule(UMTSTplCell TplCell) { base.ParentTplCell = TplCell; this.m_TplCell = TplCell; }
public TemplateUmtsDesc(UMTSTplCell tplUmtsEntity) { this.m_Entity = tplUmtsEntity; }