internal Enumerator(RefDictionary <TKey, TValue> dictionary) { _dictionary = dictionary; _index = 0; _count = _dictionary._count; _current = default; }
public RefDictionaryDebugView(RefDictionary <K, V> dictionary) { _dictionary = dictionary ?? throw new ArgumentNullException(nameof(dictionary)); }