[This is preliminary documentation and is subject to change.]

Finds the product, where one operand is a long.

Namespace:  BigNum
Assembly:  BigNum (in BigNum)
Version: 1.0.0.0

Syntax

C#
public static BigInt operator *(
	BigInt left,
	long right
)
Visual Basic (Declaration)
Public Shared Operator * ( _
	left As BigInt, _
	right As Long _
) As BigInt
Visual C++
public:
static BigInt^ operator *(
	BigInt^ left, 
	long long right
)

Parameters

left
Type: BigNum..::.BigInt
The BigInt to be multiplied.
right
Type: System..::.Int64
The long to be multiplied.

Return Value

The product of the two operands.

See Also