1 write to _properties
Microsoft.Build (1)
Instance\ImmutableProjectCollections\ImmutableProjectMetadataCollectionConverter.cs (1)
39_properties = properties ?? throw new ArgumentNullException(nameof(properties));
7 references to _properties
Microsoft.Build (7)
Instance\ImmutableProjectCollections\ImmutableProjectMetadataCollectionConverter.cs (7)
42public IEnumerable<string> Keys => _properties.Keys; 44public IEnumerable<string> Values => _properties.Values.Select(m => m.EvaluatedValueEscaped); 46public int Count => _properties.Count; 52if (_properties.ContainsKey(key)) 63public bool ContainsKey(string key) => _properties.ContainsKey(key); 79foreach (string name in _properties.Keys) 104var newDictionary = _properties.ToImmutableDictionary(