コード例 #1
0
 public abstract void Remove(DrawingElement d);
コード例 #2
0
 public override void Remove(DrawingElement d)
 {
     elements.Remove(d);
 }
コード例 #3
0
 public abstract void Add(DrawingElement d);
コード例 #4
0
 public override void Remove(DrawingElement c)
 {
     Console.WriteLine("Cannot remove from a PrimitiveElement");
 }
コード例 #5
0
 public override void Add(DrawingElement d)
 {
     elements.Add(d);
 }
コード例 #6
0
 public override void Remove(DrawingElement c)
 {
     Console.WriteLine(
         "Cannot remove from a PrimitiveElement");
 }
コード例 #7
0
 public override void Add(DrawingElement c)
 {
     Console.WriteLine("Cannot add to a PrimitiveElement");
 }
コード例 #8
0
 public override void Add(DrawingElement c)
 {
     Console.WriteLine(
         "Cannot add to a PrimitiveElement");
 }
コード例 #9
0
 public abstract void Remove(DrawingElement d);
コード例 #10
0
 public abstract void Add(DrawingElement d);
コード例 #11
0
 public override void Remove(DrawingElement d)
 {
     elements.Remove(d);
 }
コード例 #12
0
 public override void Add(DrawingElement d)
 {
     elements.Add(d);
 }