TechTalk Genome v4.2

NullableSingle.Parse Method 

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

public static NullableSingle Parse(
   string s
);

Parameters

s
The string to be converted.

Return Value

A NullableSingle 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 Single.MinValue or greater than Single.MaxValue.

Requirements

Namespace: TechTalk.Genome.NullableTypes

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

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableSingle Class | TechTalk.Genome.NullableTypes Namespace | Single.Parse