Converts the specified string representation of a logical value to its
Boolean equivalent, or throws an exception if the string is not equivalent to the value of
TrueString or
FalseString.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public static bool Parse(
string value
)
Parameters
- value
- Type: SystemString
A string containing the value to convert.
Return Value
Type:
Booleantrue if
value is equivalent to the value of the
TrueString field; false if
value is equivalent to the value of the
FalseString field.
Exceptions See Also