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.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
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)