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
Syntaxpublic bool IsDictionary { get; }
Public ReadOnly Property IsDictionary As Boolean
Get
Dim instance As CommandLineArgument
Dim value As Boolean
value = instance.IsDictionary
public:
property bool IsDictionary {
bool 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