internal HashSet <int> Get(string key)
 {
     if (Hashes.ContainsKey(key))
     {
         return(Hashes[key]);
     }
     return(new HashSet <int>());
 }
Esempio n. 2
0
 public bool HasAttribute(string attributeName)
 {
     return(Hashes.ContainsKey(attributeName));
 }