1 write to _backing
Microsoft.Build (1)
Collections\ReadOnlyConvertingDictionary.cs (1)
40
_backing
= backing;
8 references to _backing
Microsoft.Build (8)
Collections\ReadOnlyConvertingDictionary.cs (8)
49
public ICollection<K> Keys =>
_backing
.Keys;
68
public int Count =>
_backing
.Count;
80
get => _converter(
_backing
[key]);
97
return
_backing
.ContainsKey(key);
114
if (
_backing
.TryGetValue(key, out V originalValue))
158
ErrorUtilities.VerifyThrow(array.Length - arrayIndex >=
_backing
.Count, "Specified array size insufficient to hold the contents of the collection.");
160
foreach (KeyValuePair<K, V> pair in
_backing
)
184
return new ConvertingEnumerable<KeyValuePair<K, V>, KeyValuePair<K, N>>(
_backing
, KeyValueConverter).GetEnumerator();