Enum CmdLneArgsBasic.ArgType
Arguments may be of three types:
- Named
- Positional
- Switch
Further, the first and third types may be invalid arguments of their respective types. That is, a switch may be invalid, or the name of a Named Argument may be invalid. ///
Namespace: WizardWrx.Core
Assembly: WizardWrx.Core.dll
Syntax
public enum ArgType : int
Fields
Name | Description |
---|---|
InvalidNamed | The specified argument appears to be a named argument, but its name is undefined (not on the list of valid names). |
InvalidSwitch | The specified argument appears to be a switch, but its name is undefined (not on the list of valid switch characters). |
Named | The argument is named, and its value is in the list of valid names. |
Positional | The argument is positional. That is, it is neither a named argument, nor a switch. Its meaning is defined by its order of appearance in the command line. |
Switch | The argument is a switch, and its value is in the list of valid switch characters. |