public int? RunCommand(
string? commandName,
string[] args,
int index
)
Public Function RunCommand (
commandName As String,
args As String(),
index As Integer
) As Integer?
Dim instance As CommandManager
Dim commandName As String
Dim args As String()
Dim index As Integer
Dim returnValue As Integer?
returnValue = instance.RunCommand(commandName,
args, index)
public:
Nullable<int> RunCommand(
String^ commandName,
array<String^>^ args,
int index
)
This function creates the command by invoking the CreateCommand(String, String, Int32), method and then invokes the Run method on the command.
ArgumentNullException | args is |
ArgumentOutOfRangeException | index does not fall inside the bounds of args. |