Esempio n. 1
0
 /// <summary>
 /// Checks whether the specified key is represented in the index.
 /// </summary>
 public bool IndexKeyExists(object indexKey)
 {
     return(ItemGroups.ContainsKey(CastIndexKey(indexKey)));
 }
Esempio n. 2
0
 /// <summary>
 /// Checks whether the specified key is represented in the index.
 /// </summary>
 public bool IndexKeyExists(int indexKey)
 {
     return(ItemGroups.ContainsKey(indexKey));
 }