示例#1
0
 protected void AddLogicalChild(ObjectBase item)
 {
     _LogicalChildren.Add(item);
 }
示例#2
0
 protected void RemoveLogicalChild(ObjectBase item)
 {
     _LogicalChildren.Remove(item);
 }
示例#3
0
 public Unknown(ObjectBase other) : base(other, o => new Unknown(o))
 {
     ClassName = other is Unknown unkOther ? unkOther.ClassName : other.GetType().Name;
 }