NullableTypes Class Library

NullableString.ToNullableDouble Method 

Converts this NullableString instance to a NullableDouble.

[Visual Basic]
Public Function ToNullableDouble() As NullableDouble
[C#]
public NullableDouble ToNullableDouble();

Return Value

A NullableDouble that is Null if this NullableString is Null otherwise a NullableDouble whose Value equals the number represented by this NullableString instance.

Exceptions

Exception TypeCondition
FormatException this NullableString instance is not of the correct format.
OverflowException this NullableString instance represents a number less than MinValue or greater than MaxValue.

See Also

NullableString Class | NullableTypes Namespace | Parse