TriState Enumeration

Represents a value that can be either true, false or automatically determined.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
public enum TriState

Remarks

Field Value

This enumeration is equivalent to a Boolean value, with an additional option that indicates the value should be automatically determined based on some criteria.

Members

Auto0 The value should be automatically determined to be either or .
True1 Represents a value.
False2 Represents a value.

See Also