public int? Position { get; }
Public ReadOnly Property Position As Integer?
Get
Dim instance As CommandLineArgument
Dim value As Integer?
value = instance.Position
public:
property Nullable<int> Position {
Nullable<int> get ();
}
A positional argument is created by using the CommandLineArgumentAttribute.Position or CommandLineArgumentAttribute.IsPositional property.
The Position property reflects the actual position of the positional argument. This doesn't need to match the original value of the CommandLineArgumentAttribute.Position property.