Implemented interface member:
4 references to Add
System.Diagnostics.Process (4)
System\Collections\Specialized\DictionaryWrapper.cs (2)
44
public void Add(KeyValuePair<string, string?> item) =>
Add
(item.Key, item.Value);
46
public 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);