CommandLineParserArgumentNamePrefixes Property |
Gets the argument name prefixes used by this instance.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic 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 ();
}
Property Value
Type:
ReadOnlyCollectionString
A list of argument name prefixes.
Remarks
The argument name prefixes are used to distinguish argument names from positional argument values in a command line.
See Also