TechTalk Genome v4.2

NullableDouble.Subtract Method 

Computes the subtraction of the two specified NullableDouble structures.

public static NullableDouble Subtract(
   NullableDouble x,
   NullableDouble y
);

Parameters

x
A NullableDouble structure.
y
A NullableDouble structure.

Return Value

Null if either instance of NullableDouble is Null otherwise a NullableSingle structure whose Value property contains the results of the subtraction.

Remarks

If the result of the operation is too small for a NullableDouble, it becomes positive zero or negative zero.

If the result of the operation is too large for a NullableDouble, it becomes Double.PositiveInfinity or Double.NegativeInfinity.

If the operation is invalid, the result of the operation becomes Double.NaN.

If one or both operands of the operation is Double.NaN, the result of the operation becomes Double.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