TechTalk Genome v4.2

NullableBoolean Explicit NullableString to NullableBoolean Conversion 

Converts the NullableString parameter to a see NullableBoolean structure.

public static explicit operator NullableBoolean(
   NullableString x
);

Parameters

x
A NullableString to be converted to a NullableBoolean structure.

Return Value

Null if x is NullableString.Null; otherwise a NullableBoolean structure containing the parsed value of x.

Exceptions

Exception TypeCondition
FormatExceptionxis not equivalent to Boolean.TrueString or Boolean.FalseString or x does not consist solely of an optional negative sign followed by a sequence of digits ranging from 0 to 9.
OverflowExceptionx represents a number less than Int32.MinValue or greater than Int32.MaxValue.

Requirements

Namespace: TechTalk.Genome.NullableTypes

Assembly: TechTalk.Genome (in TechTalk.Genome.dll)

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableBoolean Class | TechTalk.Genome.NullableTypes Namespace