UInt128.Multiply(UInt128, UInt128) Operator

Definition

Multiplies two values together to compute their product.

public:
 static UInt128 operator *(UInt128 left, UInt128 right) = System::Numerics::IMultiplyOperators<UInt128, UInt128, UInt128>::op_Multiply;
public static UInt128 operator * (UInt128 left, UInt128 right);
static member ( * ) : UInt128 * UInt128 -> UInt128
Public Shared Operator * (left As UInt128, right As UInt128) As UInt128

Parameters

left
UInt128

The value which right multiplies.

right
UInt128

The value which multiplies left.

Returns

The product of left multiplied-by right.

Implements

Applies to