CommandInfoCreateInstance Method
Creates an instance of the command type.
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
public ICommand? CreateInstance(
string[] args,
int index
)
Public Function CreateInstance (
args As String(),
index As Integer
) As ICommand
Dim instance As CommandInfo
Dim args As String()
Dim index As Integer
Dim returnValue As ICommand
returnValue = instance.CreateInstance(args,
index)
public:
ICommand^ CreateInstance(
array<String^>^ args,
int index
)
- args String
- The arguments to the command.
- index Int32
- The index in args at which to start parsing the arguments.
ICommand
An instance of the
CommandType, or
if an error
occurred or parsing was canceled.