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

定義

2 つの値を乗算して積を計算します。

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

leftの積にrightを乗算します。

適用対象