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);
 }
Exemple #4
0
 public void remove(ICompontent ob)
 {
     list.Remove(ob);
 }
Exemple #5
0
 public void add(ICompontent ob)
 {
     list.Add(ob);
 }
 public void remove(ICompontent ob)
 {
     Console.WriteLine("null function");
 }