TechTalk Genome v4.2

NullableDecimal Multiplication Operator 

Computes the product of the two specified NullableDecimal structures.

public static NullableDecimal operator *(
   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.

Requirements

Namespace: TechTalk.Genome.NullableTypes

Assembly: TechTalk.Genome (in TechTalk.Genome.dll)

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableDecimal Class | TechTalk.Genome.NullableTypes Namespace