NullableTypes Class Library

NullableSingle.Multiply Method 

Computes the product of the two specified NullableSingle structures.

[Visual Basic]
Public Shared Function Multiply( _
   ByVal x As NullableSingle, _
   ByVal y As NullableSingle _
) As NullableSingle
[C#]
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 PositiveInfinity or NegativeInfinity.

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

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

See Also

NullableSingle Class | NullableTypes Namespace