4 writes to _current
Microsoft.Build.Framework (4)
SegmentedDictionary`2.cs (4)
1153
_current
= default;
1171
_current
= new KeyValuePair<TKey, TValue>(entry._key, entry._value);
1177
_current
= default;
1213
_current
= default;
9 references to _current
Microsoft.Build.Framework (9)
SegmentedDictionary`2.cs (9)
1181
public KeyValuePair<TKey, TValue> Current =>
_current
;
1198
return new DictionaryEntry(
_current
.Key,
_current
.Value);
1201
return new KeyValuePair<TKey, TValue>(
_current
.Key,
_current
.Value);
1225
return new DictionaryEntry(
_current
.Key,
_current
.Value);
1238
return
_current
.Key;
1251
return
_current
.Value;