IMultiplyOperators<TSelf,TOther,TResult> Interface

Définition

Définit un mécanisme permettant de calculer le produit de deux valeurs.

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)

Paramètres de type

TSelf

Type qui implémente cette interface.

TOther

Type qui se multiplie TSelf.

TResult

Type qui contient le produit de TSelf et TOther.

Dérivé

Opérateurs

Nom Description
CheckedMultiply(TSelf, TOther)

Multiplie deux valeurs ensemble pour calculer leur produit.

Multiply(TSelf, TOther)

Multiplie deux valeurs ensemble pour calculer leur produit.

S’applique à