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.
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
Public Function RunCommand As Integer?
Dim instance As CommandManager
Dim returnValue As Integer?
returnValue = instance.RunCommand()
public:
Nullable<int> RunCommand()
Return Value
NullableInt32
The value returned by
Run, or
if
the command could not be created.
This function creates the command by invoking the CreateCommand,
method and then invokes the Run method on the command.