Implemented interface member:
4 references to Add
System.Diagnostics.Process (4)
System\Collections\Specialized\DictionaryWrapper.cs (2)
44public void Add(KeyValuePair<string, string?> item) => Add(item.Key, item.Value); 46public void Add(object key, object? value) => Add((string)key, (string?)value);
System\Collections\Specialized\StringDictionaryWrapper.cs (1)
42_contents.Add(key, value);
System\Diagnostics\ProcessStartInfo.cs (1)
109_environmentVariables.Add((string)entry.Key, (string?)entry.Value);