Click or drag to resize

CommandLineParserArguments Property

Gets the arguments supported by this CommandLineParser instance.

Namespace:  Ookii.CommandLine
Assembly:  Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntax
public ReadOnlyCollection<CommandLineArgument> Arguments { get; }

Property Value

Type: ReadOnlyCollectionCommandLineArgument
A list of all the arguments.
Remarks

The Arguments property can be used to retrieve additional information about the arguments, including their name, description, and default value. Their current value can also be retrieved this way, in addition to using the arguments type directly.

See Also