public ReadOnlyCollection<CommandLineArgument> Arguments { get; }
Public ReadOnly Property Arguments As ReadOnlyCollection(Of CommandLineArgument)
Get
Dim instance As CommandLineParser
Dim value As ReadOnlyCollection(Of CommandLineArgument)
value = instance.Arguments
public:
property ReadOnlyCollection<CommandLineArgument^>^ Arguments {
ReadOnlyCollection<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.