IDivisionOperators<TSelf,TOther,TResult>.Division(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

的商除 leftright

适用于