示例#1
0
 public override void CopyPropertiesTo(UObject another)
 {
     base.CopyPropertiesTo(another);
     (another as UProcess).ProcessType = ProcessType;
 }
示例#2
0
 public virtual void CopyPropertiesTo(UObject another)
 {
     another.Name     = Name;
     another.ParentId = ParentId;
     another.ClassId  = ClassId;
 }
示例#3
0
 public override void CopyPropertiesTo(UObject another)
 {
     base.CopyPropertiesTo(another);
     (another as UTeacher).Rank = Rank;
 }