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)
1217public readonly KeyValuePair<TKey, TValue> Current => _current; 1234return new DictionaryEntry(_current.Key, _current.Value); 1237return new KeyValuePair<TKey, TValue>(_current.Key, _current.Value); 1261return new DictionaryEntry(_current.Key, _current.Value); 1274return _current.Key; 1287return _current.Value;