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