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)
1919
public KeyValuePair<TKey, TValue> Current =>
_current
;
1934
return new DictionaryEntry(
_current
.Key,
_current
.Value);
1937
return new KeyValuePair<TKey, TValue>(
_current
.Key,
_current
.Value);
1961
return new DictionaryEntry(
_current
.Key,
_current
.Value);
1974
return
_current
.Key;
1987
return
_current
.Value;