[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 *(
	long left,
	BigInt right
)
Visual Basic (Declaration)
Public Shared Operator * ( _
	left As Long, _
	right As BigInt _
) As BigInt
Visual C++
public:
static BigInt^ operator *(
	long long left, 
	BigInt^ right
)

Parameters

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

Return Value

The product of the two operands.

See Also