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; 60public int Count => _backing.Count; 72get => _converter(_backing[key]); 89return _backing.ContainsKey(key); 106if (_backing.TryGetValue(key, out V originalValue)) 150Assumed.GreaterThanOrEqual(array.Length - arrayIndex, _backing.Count, "Specified array size insufficient to hold the contents of the collection."); 152foreach (KeyValuePair<K, V> pair in _backing) 176return new ConvertingEnumerable<KeyValuePair<K, V>, KeyValuePair<K, N>>(_backing, KeyValueConverter).GetEnumerator();