TechTalk Genome v4.2

NullableSingle.Multiply Method 

Computes the product of the two specified NullableSingle structures.

public static NullableSingle Multiply(
   NullableSingle x,
   NullableSingle y
);

Parameters

x
A NullableSingle structure.
y
A NullableSingle structure.

Return Value

Null if either instance of NullableSingle is Null otherwise a NullableSingle structure whose Value property contains the product of the multiplication.

Remarks

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

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

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

If one or both operands of the operation is Single.NaN, the result of the operation becomes Single.NaN.

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