TechTalk Genome v4.2

NullableInt64.Multiply Method 

Computes the product of the two specified NullableInt64 structures.

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

Parameters

x
A NullableInt64 structure.
y
A NullableInt64 structure.

Return Value

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

Exceptions

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

Requirements

Namespace: TechTalk.Genome.NullableTypes

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

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableInt64 Class | TechTalk.Genome.NullableTypes Namespace