public string? UsedArgumentName { get; }
Public ReadOnly Property UsedArgumentName As String
Get
Dim instance As CommandLineArgument
Dim value As String
value = instance.UsedArgumentName
public:
property String^ UsedArgumentName {
String^ get ();
}
This property can be the value of the ArgumentName property, the ShortName property, or any of the values in the Aliases and ShortAliases properties. Unless disabled using the ParseOptionsAutoPrefixAliases or ParseOptionsAttributeAutoPrefixAliases property, it can also be any unique prefix of an argument name or alias.
If the argument names are case-insensitive, the value of this property uses the casing as specified on the command line, not the original casing of the argument name or alias.