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