4 writes to _current
Microsoft.CodeAnalysis.InteractiveHost (4)
src\Dependencies\Collections\Segmented\SegmentedDictionary`2.cs (4)
1189
_current
= default;
1207
_current
= new KeyValuePair<TKey, TValue>(entry._key, entry._value);
1213
_current
= default;
1249
_current
= default;
9 references to _current
Microsoft.CodeAnalysis.InteractiveHost (9)
src\Dependencies\Collections\Segmented\SegmentedDictionary`2.cs (9)
1217
public readonly KeyValuePair<TKey, TValue> Current =>
_current
;
1234
return new DictionaryEntry(
_current
.Key,
_current
.Value);
1237
return new KeyValuePair<TKey, TValue>(
_current
.Key,
_current
.Value);
1261
return new DictionaryEntry(
_current
.Key,
_current
.Value);
1274
return
_current
.Key;
1287
return
_current
.Value;