1 write to _values
Microsoft.Build (1)
Instance\ImmutableProjectCollections\ImmutableElementCollectionConverter.cs (1)
30
_values
= new ValuesCollection(_projectElements, constrainedProjectElements, convertElement);
12 references to _values
Microsoft.Build (12)
Instance\ImmutableProjectCollections\ImmutableElementCollectionConverter.cs (12)
39
public int Count =>
_values
.Count;
45
public ICollection<T> Values =>
_values
;
66
public void CopyTo(T[] array) =>
_values
.CopyTo(array, arrayIndex: 0);
68
public void CopyTo(T[] array, int arrayIndex, int count) =>
_values
.CopyTo(array, arrayIndex, count);
70
public void CopyTo(T[] array, int arrayIndex) =>
_values
.CopyTo(array, arrayIndex);
72
public void CopyTo(KeyValuePair<string, T>[] array, int arrayIndex) =>
_values
.CopyTo(array, arrayIndex);
74
public T Get(string key) =>
_values
.Get(key);
76
public T Get(string key, int index, int length) =>
_values
.Get(key, index, length);
78
public IEnumerator<T> GetEnumerator() =>
_values
.GetEnumerator();
94
public bool TryGetValue(string key, out T value) =>
_values
.TryGetValue(key, out value);
98
IEnumerator<KeyValuePair<string, T>> IEnumerable<KeyValuePair<string, T>>.GetEnumerator() =>
_values
.GetKvpEnumerator();
100
IEnumerator IEnumerable.GetEnumerator() =>
_values
.GetEnumerator();