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)
49public ICollection<K> Keys => _backing.Keys; 68public int Count => _backing.Count; 80get => _converter(_backing[key]); 97return _backing.ContainsKey(key); 114if (_backing.TryGetValue(key, out V originalValue)) 158ErrorUtilities.VerifyThrow(array.Length - arrayIndex >= _backing.Count, "Specified array size insufficient to hold the contents of the collection."); 160foreach (KeyValuePair<K, V> pair in _backing) 184return new ConvertingEnumerable<KeyValuePair<K, V>, KeyValuePair<K, N>>(_backing, KeyValueConverter).GetEnumerator();