public string ArgumentNameWithPrefix { get; }
Public ReadOnly Property ArgumentNameWithPrefix As String
Get
Dim instance As CommandLineArgument
Dim value As String
value = instance.ArgumentNameWithPrefix
public:
property String^ ArgumentNameWithPrefix {
String^ get ();
}
If the CommandLineParser.Mode property is ParsingMode.LongShort, this will use the long name with the long argument prefix if the argument has a long name, and the short name with the primary short argument prefix if not.
For ParsingMode.Default, the prefix used is the first prefix specified in the CommandLineParser.ArgumentNamePrefixes property.