コード例 #1
0
ファイル: TableIndex.cs プロジェクト: RapidScada/scada-v6
 /// <summary>
 /// Checks whether the specified key is represented in the index.
 /// </summary>
 public bool IndexKeyExists(object indexKey)
 {
     return(ItemGroups.ContainsKey(CastIndexKey(indexKey)));
 }
コード例 #2
0
 /// <summary>
 /// Checks whether the specified key is represented in the index.
 /// </summary>
 public bool IndexKeyExists(int indexKey)
 {
     return(ItemGroups.ContainsKey(indexKey));
 }