public NameTransform ArgumentNameTransform { get; set; }
Public Property ArgumentNameTransform As NameTransform
Get
Set
Dim instance As ParseOptionsAttribute
Dim value As NameTransform
value = instance.ArgumentNameTransform
instance.ArgumentNameTransform = value
public:
property NameTransform ArgumentNameTransform {
NameTransform get ();
void set (NameTransform value);
}
If an argument doesn't have the CommandLineArgumentAttributeArgumentName property set, the argument name is determined by taking the name of the property or method that defines it, and applying the specified transformation.
The name transformation will also be applied to the names of the automatically added help and version attributes.
This value can be overridden by the ParseOptionsArgumentNameTransform property.