コード例 #1
0
ファイル: ObjectBase.cs プロジェクト: vpenades/UberFactory
 protected void AddLogicalChild(ObjectBase item)
 {
     _LogicalChildren.Add(item);
 }
コード例 #2
0
ファイル: ObjectBase.cs プロジェクト: vpenades/UberFactory
 protected void RemoveLogicalChild(ObjectBase item)
 {
     _LogicalChildren.Remove(item);
 }
コード例 #3
0
ファイル: ObjectBase.cs プロジェクト: vpenades/UberFactory
 public Unknown(ObjectBase other) : base(other, o => new Unknown(o))
 {
     ClassName = other is Unknown unkOther ? unkOther.ClassName : other.GetType().Name;
 }