示例#1
0
 public int IndexOf(Server obj)
 {
     return this.List.IndexOf(obj);
 }
示例#2
0
        public Server Add(Server obj)
        {
            this.List.Add(obj);

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