IMultiplyOperators<TSelf,TOther,TResult> 接口

定义

定义计算两个值乘积的机制。

generic <typename TSelf, typename TOther, typename TResult>
 where TSelf : IMultiplyOperators<TSelf, TOther, TResult>public interface class IMultiplyOperators
public interface IMultiplyOperators<TSelf,TOther,TResult> where TSelf : IMultiplyOperators<TSelf,TOther,TResult>
type IMultiplyOperators<'Self, 'Other, 'Result (requires 'Self :> IMultiplyOperators<'Self, 'Other, 'Result>)> = interface
Public Interface IMultiplyOperators(Of TSelf, TOther, TResult)

类型参数

TSelf

实现此接口的类型。

TOther

将相乘 TSelf的类型。

TResult

包含和 TOther. 的TSelf乘积的类型。

派生

运营商

名称 说明
CheckedMultiply(TSelf, TOther)

将两个值相乘以计算其产品。

Multiply(TSelf, TOther)

将两个值相乘以计算其产品。

适用于