IMultiplyOperators<TSelf,TOther,TResult>.Multiply(TSelf, TOther) 运算符

定义

将两个值相乘以计算其乘积。

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

参数

left
TSelf

乘以的值 right

right
TOther

乘以 left的值。

返回

TResult

乘以 rightleft乘积。

适用于