示例#1
0
 /// <summary>
 /// 包含判定
 /// </summary>
 public bool Contains(T item) => Shells.Contains(item);
示例#2
0
 /// <summary>
 /// キーの包含判定
 /// </summary>
 public bool ContainsKey(TKey key) => Shells.Contains(key);
 bool IDictionary.Contains(object key) => Shells.Contains((TKey)key);
示例#4
0
 bool IReadOnlyDictionary <TKey, DataProperty <TValue> > .ContainsKey(TKey key) => Shells.Contains(key);