4 writes to _current
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (4)
1782
_current
= default;
1800
_current
= new KeyValuePair<TKey, TValue>(entry.key, entry.value);
1806
_current
= default;
1840
_current
= default;
9 references to _current
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (9)
1810
public KeyValuePair<TKey, TValue> Current =>
_current
;
1825
return new DictionaryEntry(
_current
.Key,
_current
.Value);
1828
return new KeyValuePair<TKey, TValue>(
_current
.Key,
_current
.Value);
1852
return new DictionaryEntry(
_current
.Key,
_current
.Value);
1865
return
_current
.Key;
1878
return
_current
.Value;