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