Ejemplo n.º 1
0
        public DictionaryWrapper(IReadOnlyDictionary <TKey, TValue> dictionary)
        {
            ValidationUtils.ArgumentNotNull(dictionary, nameof(dictionary));

            _readOnlyDictionary = dictionary;
        }
Ejemplo n.º 2
0
 public DictionaryEnumerator(IEnumerator <KeyValuePair <TEnumeratorKey, TEnumeratorValue> > e)
 {
     ValidationUtils.ArgumentNotNull(e, nameof(e));
     _e = e;
 }
Ejemplo n.º 3
0
        public DictionaryWrapper(IDictionary dictionary)
        {
            ValidationUtils.ArgumentNotNull(dictionary, nameof(dictionary));

            _dictionary = dictionary;
        }