public ImmutableArray<string> ArgumentNamePrefixes { get; }
Public ReadOnly Property ArgumentNamePrefixes As ImmutableArray(Of String)
Get
Dim instance As CommandLineParser
Dim value As ImmutableArray(Of String)
value = instance.ArgumentNamePrefixes
public:
property ImmutableArray<String^> ArgumentNamePrefixes {
ImmutableArray<String^> get ();
}
The argument name prefixes are used to distinguish argument names from positional argument values in a command line.
If the Mode property is ParsingModeLongShort, these are the prefixes for short argument names. Use the LongArgumentNamePrefix property to get the prefix for long argument names.