예제 #1
0
 internal Enumerator(TypeDictionary2 <TValue> dictionary)
 {
     _dictionary = dictionary;
     _index      = 0;
     _count      = _dictionary._count;
     _current    = default;
 }
예제 #2
0
 public TypeDictionary2DebugView(TypeDictionary2 <V> dictionary)
 {
     _dictionary = dictionary ?? throw new ArgumentNullException(nameof(dictionary));
 }