4 writes to _current
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (4)
1891_current = default; 1909_current = new KeyValuePair<TKey, TValue>(entry.key, entry.value); 1915_current = default; 1949_current = default;
9 references to _current
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (9)
1919public KeyValuePair<TKey, TValue> Current => _current; 1934return new DictionaryEntry(_current.Key, _current.Value); 1937return new KeyValuePair<TKey, TValue>(_current.Key, _current.Value); 1961return new DictionaryEntry(_current.Key, _current.Value); 1974return _current.Key; 1987return _current.Value;