CliArgumentArity Enumeration
            Defines the arity of an option or argument. The arity refers to the number of values that can be passed on the command line.
            
Namespace: DotMake.CommandLineAssembly: DotMake.CommandLine (in DotMake.CommandLine.dll) Version: 2.8.2
public enum CliArgumentArity
 | Zero | 0 | 
            An arity that does not allow any values.
             | 
| ZeroOrOne | 1 | 
            An arity that may have one value, but no more than one.
             | 
| ExactlyOne | 2 | 
            An arity that must have exactly one value.
             | 
| ZeroOrMore | 3 | 
            An arity that may have multiple values.
             | 
| OneOrMore | 4 | 
            An arity that must have at least one value.
             |