TechTalk Genome v4.2

NullableDouble Explicit NullableSingle to NullableDouble Conversion 

Converts the NullableSingle parameter to a NullableDouble structure.

public static explicit operator NullableDouble(
   NullableSingle x
);

Parameters

x
A NullableSingle to be converted to a NullableDouble structure.

Return Value

Null if x is NullableSingle.Null otherwise a new NullableDouble structure constructed from the NullableSingle.Value of x.

Remarks

The xNullableSingle value is rounded to the nearest double value. If the Single value is NaN, the result is also NaN.

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