示例#1
0
 public override void Remove(CampComponent campComponent)
 {
     throw new InvalidOperationException("Operation does not exist for Child");
 }
示例#2
0
 public abstract void Add(CampComponent campComponent);
示例#3
0
 public abstract void Remove(CampComponent campComponent);
示例#4
0
 public override void Remove(CampComponent campComponent)
 {
     _children.Remove(campComponent ?? throw new ArgumentNullException("campComponent"));
 }