CmdArguments.Add method (1 of 2)

Adds a element with the provided key and value to the Dictionary, if they weren't part of the original command line argument string.

public void Add(KeyValuePair<string, string> item)
parameter description
item The switch and corresponding value to add. This Key is automatically made lower case if CaseSensitive is False.

See Also


CmdArguments.Add method (2 of 2)

Adds a element with the provided key and value to the Dictionary, if they weren't part of the original command line argument string.

public void Add(string key, string value)
parameter description
key The object to use as a key of the element to add. This is automatically made lower case.
value The value to add for the given key.

See Also