getopt.net
A port of getopt in pure C#.
ArgumentType.cs
Go to the documentation of this file.
1using System;
2
3namespace getopt.net {
4
8 public enum ArgumentType {
9
13 None,
14
19
24
25 }
26}
27
ArgumentType
Enumeration containing the argument types possible for getopt.
Definition: ArgumentType.cs:8
@ None
No argument is required for the option.
@ Required
The option has a mandatory argument.
@ Optional
Arguments are optional for this argument.