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 CommandLineArgumentAttributePosition or CommandLineArgumentAttributeIsPositional property.
The Position property reflects the actual position of the positional argument. This doesn't need to match the original value of the CommandLineArgumentAttributePosition property.