Class CommandLine
Command line options helper.
Inheritance
CommandLine
Assembly: FlaxEngine.dll
File: Engine/Engine/CommandLine.h
Syntax
public class CommandLine
Fields
Options
The input options.
Declaration
public static OptionsData Options
Field Value
|
OptionsData
|
Methods
Parse(const Char* cmdLine)
Parses the input command line.
Declaration
public static bool Parse(const Char* cmdLine)
Parameters
|
Char
cmdLine
The command line. |
Returns
|
bool
True if failed, otherwise false. |
ParseArguments(const StringView& cmdLine, Array<StringAnsi>& arguments)
Parses the command line arguments string into string list of arguments.
Declaration
public static bool ParseArguments(const StringView& cmdLine, Array<StringAnsi>& arguments)
Parameters
|
StringView
cmdLine
The command line. |
|
Array<StringAnsi>
arguments
The parsed arguments |
Returns
|
bool
True if failed, otherwise false. |