Edit

Share via


UInt32.BigMul(UInt32, UInt32) Method

Definition

Produces the full product of two unsigned 32-bit numbers.

public:
 static System::UInt64 BigMul(System::UInt32 left, System::UInt32 right);
public static ulong BigMul (uint left, uint right);
static member BigMul : uint32 * uint32 -> uint64
Public Shared Function BigMul (left As UInteger, right As UInteger) As ULong

Parameters

left
UInt32

The first number to multiply.

right
UInt32

The second number to multiply.

Returns

The number containing the product of the specified numbers.

Applies to