NullableTypes Class Library

NullableDecimal.Multiply Method 

Computes the product of the two specified NullableDecimal structures.

[Visual Basic]
Public Shared Function Multiply( _
   ByVal x As NullableDecimal, _
   ByVal y As NullableDecimal _
) As NullableDecimal
[C#]
public static NullableDecimal Multiply(
   NullableDecimal x,
   NullableDecimal y
);

Parameters

x
A NullableDecimal structure.
y
A NullableDecimal structure.

Return Value

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

Exceptions

Exception TypeCondition
OverflowException The product compute a number that is less than MinValue or greater than MaxValue.

See Also

NullableDecimal Class | NullableTypes Namespace