Documentation for the C# command-line option parsing library

OptValType Enumeration

Type of value that the option permits

public enum OptValType

Members

Member Name Description
Flag The option does not accept a value
IncrementalFlag The option does not accept a value, but may be declared multiple times
ValueReq The option requires a value. If a value is not supplied, an error will be thrown
ValueOpt The option optional takes a value
MultValue The option allows 0 to many values

Requirements

Namespace: CommandLine.OptParse

Assembly: CSharpOptParse (in CSharpOptParse.dll)

See Also

CommandLine.OptParse Namespace