NullableTypes Class Library

NullableByte.Multiply Method 

Computes the product of the two specified NullableByte structures.

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

Parameters

x
A NullableByte structure.
y
A NullableByte structure.

Return Value

Null if either instance of NullableByte is Null otherwise a NullableByte 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

NullableByte Class | NullableTypes Namespace