public void remove(ICompontent ob)
 {
     Console.WriteLine("null function");
 }
 public void remove(ICompontent ob)
 {
     list.Remove(ob);
 }
 public void add(ICompontent ob)
 {
     list.Add(ob);
 }
Beispiel #4
0
 public void remove(ICompontent ob)
 {
     list.Remove(ob);
 }
Beispiel #5
0
 public void add(ICompontent ob)
 {
     list.Add(ob);
 }
 public void remove(ICompontent ob)
 {
     Console.WriteLine("null function");
 }