public NameTransform? ArgumentNameTransform { get; set; }
Public Property ArgumentNameTransform As NameTransform?
Get
Set
Dim instance As ParseOptions
Dim value As NameTransform?
value = instance.ArgumentNameTransform
instance.ArgumentNameTransform = value
public:
property Nullable<NameTransform> ArgumentNameTransform {
Nullable<NameTransform> get ();
void set (Nullable<NameTransform> value);
}
If an argument doesn't have the ArgumentName property set (or doesn't have an ArgumentNameAttribute attribute for constructor parameters), the argument name is determined by taking the name of the property, constructor parameter, or method that defines it, and applying the specified transform.
The name transform will also be applied to the names of the automatically added help and version attributes.
If not , this property overrides the value of the ArgumentNameTransform property.