CommandInfoCreateInstance Method
            Creates an instance of the command type.
            
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
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.
 
ICommandAn instance of the 
CommandType.