Exemplo n.º 1
0
 public bool AddIfNotExists(string Address, Connection value)
 {
     if (this.Contains(Address))
         return false;
     this.Add(Address,value);
     return true;
 }
Exemplo n.º 2
0
 public void Add(string Address, Connection value)
 {
     this.BaseAdd(Address,value);
 }