CommandLineArgument.Value Property

Gets the value that the argument was set to in the last call to CommandLineParser.Parse(String[]).

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.1.0+9df03b6173b5fc9d44dc39638758964dd7a0f4c7
C#
public Object? Value { get; }

Property Value

Object
The value of the argument that was obtained when the command line arguments were parsed.

Remarks

The Value property provides an alternative method for accessing supplied argument values, in addition to using the object returned by CommandLineParser.Parse(String[]).

If an argument was supplied on the command line, the Value property will equal the supplied value after conversion to the type specified by the ArgumentType property, and the HasValue property will be true.

If an optional argument was not supplied, the Value property will equal the DefaultValue property, and HasValue will be false.

If the Kind property is ArgumentKind.MultiValue, the Value property will return an array with all the values, even if the argument type is a collection type rather than an array.

If the Kind property is ArgumentKind.Dictionary, the Value property will return a Dictionary<TKey, TValue> with all the values, even if the argument type is a different type.

See Also