4 writes to _current
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (4)
1783_current = default; 1801_current = new KeyValuePair<TKey, TValue>(entry.key, entry.value); 1807_current = default; 1841_current = default;
9 references to _current
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (9)
1811public KeyValuePair<TKey, TValue> Current => _current; 1826return new DictionaryEntry(_current.Key, _current.Value); 1829return new KeyValuePair<TKey, TValue>(_current.Key, _current.Value); 1853return new DictionaryEntry(_current.Key, _current.Value); 1866return _current.Key; 1879return _current.Value;