Enum OptionVariance
Enum defining the variance of an Option.
Namespace: sttz.Trimmer
Assembly: Trimmer.dll
Syntax
public enum OptionVariance
Fields
Name | Description |
---|---|
Array | The Option is an array. It has variants that are ordered by an index and the parameter is set automatically. |
Dictionary | The Option is a dictionary. It has variants that differ by their parameter and the parameter is set explicitly. |
Single | The Option is not variant. There exists only a single instance with a single value. |