ArgumentNameAttribute Constructor

Initializes a new instance of the ArgumentNameAttribute class.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public ArgumentNameAttribute(
	string? argumentName = null
)

Parameters

argumentName  String  (Optional)
The name of the argument, or to indicate the parameter name should be used (applying the NameTransform that is being used).

Remarks

The NameTransform will not be applied to explicitly specified names.

If the Mode property is LongShort, argumentName is the long name of the attribute.

See Also