public ImmutableArray<CommandLineArgument> Arguments { get; }
Public ReadOnly Property Arguments As ImmutableArray(Of CommandLineArgument)
Get
Dim instance As CommandLineParser
Dim value As ImmutableArray(Of CommandLineArgument)
value = instance.Arguments
public:
property ImmutableArray<CommandLineArgument^> Arguments {
ImmutableArray<CommandLineArgument^> get ();
}
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.
To find an argument by name or alias, use the GetArgument(String) or GetShortArgument(Char) method.