ParentCommandParse Method
            Parses the arguments for the command, locating and instantiating a child command.
            
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
public void Parse(
	ReadOnlyMemory<string> args,
	CommandManager manager
)
Public Sub Parse ( 
	args As ReadOnlyMemory(Of String),
	manager As CommandManager
)
Dim instance As ParentCommand
Dim args As ReadOnlyMemory(Of String)
Dim manager As CommandManager
instance.Parse(args, manager)
public:
virtual void Parse(
	ReadOnlyMemory<String^> args, 
	CommandManager^ manager
) sealed
- args  ReadOnlyMemoryString
- 
            The arguments for the command, where the first argument is the name of the child command.
            
- manager  CommandManager
- 
            The CommandManager instance that was used to create this command.
            
ICommandWithCustomParsingParse(ReadOnlyMemoryString, CommandManager)