NonSwitchBoolean.Parse(String) Method

Converts the specified string to a NonSwitchBoolean value.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
public static NonSwitchBoolean Parse(
	string value
)

Parameters

value  String
The string to convert.

Return Value

NonSwitchBoolean
true if value is equivalent to TrueString; false if value is equivalent to FalseString.

Remarks

This method uses the Boolean.Parse(String) method to perform the conversion.

Exceptions

ArgumentNullExceptionvalue is null.
FormatExceptionvalue is not a valid boolean value.

See Also