IMultiplyOperators<TSelf,TOther,TResult>.Multiply(TSelf, TOther) Operador

Definición

Multiplica dos valores juntos para calcular su producto.

public:
 static TResult operator *(TSelf left, TOther right);
public static abstract TResult operator * (TSelf left, TOther right);
static member ( * ) : 'Self * 'Other -> 'Result
Public Shared Operator * (left As TSelf, right As TOther) As TResult

Parámetros

left
TSelf

Valor que right multiplica.

right
TOther

Valor que multiplica left.

Devoluciones

TResult

Producto de left multiplicado por right.

Se aplica a