public ICommand? CreateCommand(
string? commandName,
string[] args,
int index
)
Public Function CreateCommand (
commandName As String,
args As String(),
index As Integer
) As ICommand
Dim instance As CommandManager
Dim commandName As String
Dim args As String()
Dim index As Integer
Dim returnValue As ICommand
returnValue = instance.CreateCommand(commandName,
args, index)
public:
ICommand^ CreateCommand(
String^ commandName,
array<String^>^ args,
int index
)
If the command could not be found, a list of possible commands is written using the UsageWriter. If an error occurs parsing the command's arguments, the error message is written to Error, and the command's usage information is written to UsageWriter.
If the Error parameter is , output is written to a LineWrappingTextWriter for the standard error stream, wrapping at the console's window width. If the stream is redirected, output may still be wrapped, depending on the value returned by WindowWidth.
Commands that don't meet the criteria of the CommandFilter predicate are not returned.
The automatic version command is returned if the AutoVersionCommand property is and the command name matches the name of the automatic version command, and not any other command name.
ArgumentNullException | args is |
ArgumentOutOfRangeException | index does not fall inside the bounds of args. |