CommandInfoCreateInstance Method

Creates an instance of the command type.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public ICommand? CreateInstance(
	string[] args,
	int index
)

Parameters

args  String
The arguments to the command.
index  Int32
The index in args at which to start parsing the arguments.

Return Value

ICommand
An instance of the CommandType, or if an error occurred or parsing was canceled.

Exceptions

ArgumentNullExceptionargs is .
ArgumentOutOfRangeExceptionindex does not fall inside the bounds of args.

See Also