CommandLineArgumentIsMultiValue Property  | 
 
            Gets a value indicating whether this argument is a multi-value argument.
            
 
    Namespace: 
   Ookii.CommandLine
    Assembly:
   Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic bool IsMultiValue { get; }Public ReadOnly Property IsMultiValue As Boolean
	Get
Dim instance As CommandLineArgument
Dim value As Boolean
value = instance.IsMultiValue
public:
property bool IsMultiValue {
	bool get ();
}Property Value
Type: 
Boolean if the argument is a multi-value argument; otherwise, 
.
            
Remarks
              A multi-value argument can accept multiple values by having the argument supplied more than once.
            
              An argument is a multi-value argument if its ArgumentType is an array or the argument was defined by a read-only property whose type
              implements the ICollectionT generic interface, or when the IsDictionary property is .
            
See Also