Click or drag to resize

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
Syntax
public bool IsMultiValue { 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