TriStateExtensionsToBoolean Method

Converts the TriState value to a Boolean value.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
public static bool ToBoolean(
	this TriState value,
	bool autoValue
)

Parameters

value  TriState
The TriState value to convert.
autoValue  Boolean
The value to return if value is TriStateAuto.

Return Value

Boolean
if value is TriStateTrue; if value is TriStateFalse; and autoValue if value is TriStateAuto.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type TriState. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also