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 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.