Exemplo n.º 1
0
 public bool Remove(KeyValuePair <string, string> item)
 {
     if (Contains(item))
     {
         client.RemoveEntryFromHash(hashId, item.Key);
         return(true);
     }
     return(false);
 }