Implemented interface member:
5 references to TryGetValue
Microsoft.Build (3)
Construction\ProjectTaskElement.cs (1)
303if (_parameters.TryGetValue(name, out (string, ElementLocation) parameter))
CopyOnWriteDictionary.cs (1)
195TryGetValue((string)key, out V? val);
Instance\ProjectTaskInstance.cs (1)
314if (_parameters.TryGetValue(parameterName, out var parameterValue))
Microsoft.Build.Engine.UnitTests (2)
CopyOnWriteDictionary_Tests.cs (2)
66bool result = dictionary.TryGetValue(k1, out v2); 81bool result = dictionary.TryGetValue(string.Empty, out v);