CommandLineArgumentPosition Property

Gets the position of this argument.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
C#
public int? Position { get; }

Property Value

NullableInt32
The position of this argument, or if this is not a positional argument.

Remarks

A positional argument is created either using a constructor parameter on the command line arguments type, or by using the Position property.

The Position property reflects the actual position of the positional argument. For positional arguments created from properties this doesn't need to match the original value of the Position property.

See Also