public (ICommand , ParseResult ) CreateInstanceWithResult(
string[] args,
int index
)
Public Function CreateInstanceWithResult (
args As String(),
index As Integer
) As ( As ICommand, As ParseResult)
Dim instance As CommandInfo
Dim args As String()
Dim index As Integer
Dim returnValue As ( As ICommand, As ParseResult)
returnValue = instance.CreateInstanceWithResult(args,
index)
public:
ValueTuple<ICommand^, ParseResult> CreateInstanceWithResult(
array<String^>^ args,
int index
)
The Status property of the returned ParseResult will be None if the command used custom parsing.
ArgumentNullException | args is . |
ArgumentOutOfRangeException | index does not fall inside the bounds of args. |