Interface INullValueDictionary<TKey, TValue>
This custom IDictionary doesn't throw a KeyNotFoundException while accessing its value by a given key
public interface INullValueDictionary<TKey, TValue> : IDictionary<TKey, TValue>, ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable
Type Parameters
TKey
TValue
- Inherited Members
Properties
this[TKey]
TValue this[TKey key] { get; set; }
Parameters
key
TKey
Property Value
- TValue
Methods
Clone()
INullValueDictionary<TKey, TValue> Clone()
Returns
- INullValueDictionary<TKey, TValue>