Exemplo n.º 1
0
 internal Enumerator(DictionarySlim dictionary)
 {
     _dictionary = dictionary;
     _index      = 0;
     _count      = _dictionary._count;
     _current    = default;
 }
Exemplo n.º 2
0
 public DictionarySlimDebugView(DictionarySlim <K, V> dictionary)
 {
     _dictionary = dictionary ?? throw new ArgumentNullException(nameof(dictionary));
 }