CliParserParse(String) Method
            Parses a command line string array and returns the parse result for the indicated command.
            
Namespace: DotMake.CommandLineAssembly: DotMake.CommandLine (in DotMake.CommandLine.dll) Version: 2.8.2
public CliResult Parse(
	string[] args = null
)
- args  String  (Optional)
 - 
            The string array typically passed to a program. This is usually
            the special variable args available in Program.cs (new style with top-level statements)
            or the string array passed to the program's Main method (old style).
            If not specified or , args will be retrieved automatically from the current process via GetArgs.
            
 
CliResultA 
CliResult providing details about the parse operation and methods for binding.