Half.Multiply(Half, Half) Operator

Definition

Multiplies two values together to compute their product.

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

Parameters

left
Half

The value which right multiplies.

right
Half

The value which multiplies left.

Returns

The product of left multiplied-by right.

Implements

Applies to