public string? LongArgumentNamePrefix { get; set; }
Public Property LongArgumentNamePrefix As String
Get
Set
Dim instance As ParseOptionsAttribute
Dim value As String
value = instance.LongArgumentNamePrefix
instance.LongArgumentNamePrefix = value
public:
property String^ LongArgumentNamePrefix {
String^ get ();
void set (String^ value);
}
This property is only used if the Mode or ParseOptions.Mode property is ParsingMode.LongShort, or if the PrefixTermination or ParseOptions.PrefixTermination property is not PrefixTerminationMode.None.
Use the ArgumentNamePrefixes to specify the prefixes for short argument names.
This value can be overridden by the ParseOptions.LongArgumentNamePrefix property.