Classes

  ClassDescription
Public classBaseCommandLineOption
Base class for all the command line options
Public classBoolCommandLineOption
This class represents a switch command line option
Public classCommandLineManager
Manage the command line option and is used to register and retreive option value. Proces must call to analyse the command line
Public classValueCommandLineOption
This class is used with a value command line. Ex /out:myfilename.xml

Examples

run.exe /out:myfilename.xml
 Copy imageCopy Code
  ValueCommandLineOption _OutputCommandLineOption = new ValueCommandLineOption(new string[] { "o:", "out:" });