CommandManagerRunCommand Method

Finds and instantiates the subcommand using the arguments from the GetCommandLineArgs method, using the first argument as the command name. If it succeeds, runs the command. If it fails, writes error and usage information.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public int? RunCommand()

Return Value

NullableInt32
The value returned by Run, or if the command could not be created.

Remarks

This function creates the command by invoking the CreateCommand, method and then invokes the Run method on the command.

See Also