Click or drag to resize

CommandLineArgumentIsDictionary Property

Gets a value indicating whether this argument is a dictionary argument.

Namespace:  Ookii.CommandLine
Assembly:  Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntax
public bool IsDictionary { get; }

Property Value

Type: Boolean
if this argument is a dictionary argument; otherwise, .
Remarks

A dictionary argument is an argument whose values have the form "key=value", which get added to a dictionary based on the key.

An argument is a dictionary argument when its ArgumentType is DictionaryTKey, TValue, or it was defined by a read-only property whose type implements the IDictionaryTKey, TValue property.

See Also