public ICommand? CreateInstance(
ReadOnlyMemory<string> args
)
Public Function CreateInstance (
args As ReadOnlyMemory(Of String)
) As ICommand
Dim instance As CommandInfo
Dim args As ReadOnlyMemory(Of String)
Dim returnValue As ICommand
returnValue = instance.CreateInstance(args)
public:
ICommand^ CreateInstance(
ReadOnlyMemory<String^> args
)
If the type indicated by the CommandType property implements the ICommandWithCustomParsing parsing interface, an instance of the type is created and the ICommandWithCustomParsingParse(ReadOnlyMemoryString, CommandManager) method invoked. Otherwise, an instance of the type is created using the CommandLineParserT class.