public int IndexOf(Server obj)
 {
     return this.List.IndexOf(obj);
 }
        public Server Add(Server obj)
        {
            this.List.Add(obj);

            return obj;
        }
 public void Remove(Server obj)
 {
     this.List.Remove(obj);
 }
 public void Insert(int index, Server obj)
 {
     this.List.Insert(index, obj);
 }
Beispiel #5
0
 public void Remove(Server obj)
 {
     this.ServerCollection.Remove(obj);
 }
Beispiel #6
0
 public Server Add(Server obj)
 {
     return this.ServerCollection.Add(obj);
 }