TechTalk Genome v4.2

NullableDouble.Parse Method 

Converts the specified string representation of a number value to its NullableDouble equivalent.

public static NullableDouble Parse(
   string s
);

Parameters

s
The string to be converted.

Return Value

A NullableDouble structure containing the parsed value.

Remarks

The s parameter can contain NumberFormatInfo.PositiveInfinitySymbol, NumberFormatInfo.NegativeInfinitySymbol and NumberFormatInfo.NaNSymbol.

Exceptions

Exception TypeCondition
ArgumentNullExceptions is a null reference (Nothing in Visual Basic).
FormatExceptions s is not a number in a valid format.
OverflowExceptions represents a number less than Double.MinValue or greater than Double.MaxValue.

Requirements

Namespace: TechTalk.Genome.NullableTypes

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

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableDouble Class | TechTalk.Genome.NullableTypes Namespace | Double.Parse