Click or drag to resize

CommandLineTypeExecCommand Method

Allows processing of a command manually from your code without calling the CommandLineType.Execute() method.

Namespace:  us.FreeWill.CommandLine
Assembly:  CommandLine (in CommandLine.dll) Version: 2.0.2341.22284
Syntax
C#
public CommandResultEnum ExecCommand(
	string command
)

Parameters

command
Type: SystemString
The full text from the user's command entry.

Return Value

Type: CommandResultEnum
A CommandResultEnum value.
Remarks
Good for use outside of a console app where you can give the running thread completely over to the command processor which just sits there waiting for keystrokes.
See Also