Пример #1
0
 public TryGetValueDictionaryOperation <TKey, TValue> TryGetValue(TKey key) => DictionaryOperation.TryGetValue <TKey, TValue>(key);
Пример #2
0
 public GetValuesDictionaryOperation <TKey, TValue> GetValues() => DictionaryOperation.GetValues <TKey, TValue>();
Пример #3
0
 public RemoveDictionaryOperation <TKey, TValue> Remove(TKey key) => DictionaryOperation.Remove <TKey, TValue>(key);
Пример #4
0
 public GetDictionaryOperation <TKey, TValue> Get(TKey key) => DictionaryOperation.Get <TKey, TValue>(key);
Пример #5
0
 public SetDictionaryOperation <TKey, TValue> Set(TKey key, TValue value) => DictionaryOperation.Set <TKey, TValue>(key, value);
Пример #6
0
 public RemoveCollectionOperation <KeyValuePair <TKey, TValue> > Remove(KeyValuePair <TKey, TValue> value) => DictionaryOperation.Remove(value);
Пример #7
0
 public IsReadOnlyCollectionOperation <KeyValuePair <TKey, TValue> > IsReadOnly() => DictionaryOperation.IsReadOnly <TKey, TValue>();
Пример #8
0
 public ContainsKeyDictionaryOperation <TKey, TValue> ContainsKey(TKey key) => DictionaryOperation.ContainsKey <TKey, TValue>(key);
Пример #9
0
 public CopyToCollectionOperation <KeyValuePair <TKey, TValue> > CopyTo(KeyValuePair <TKey, TValue>[] array, int index) => DictionaryOperation.CopyTo(array, index);
Пример #10
0
 public ContainsCollectionOperation <KeyValuePair <TKey, TValue> > Contains(KeyValuePair <TKey, TValue> value) => DictionaryOperation.Contains(value);
Пример #11
0
 public ClearCollectionOperation <KeyValuePair <TKey, TValue> > Clear() => DictionaryOperation.Clear <TKey, TValue>();
Пример #12
0
 public AddDictionaryOperation <TKey, TValue> Add(TKey key, TValue value) => DictionaryOperation.Add(key, value);
Пример #13
0
 public EnumerateEnumerableOperation <KeyValuePair <TKey, TValue> > Enumerate() => DictionaryOperation.Enumerate <TKey, TValue>();
Пример #14
0
 public CountDictionaryOperation <TKey, TValue> Count() => DictionaryOperation.Count <TKey, TValue>();