IMultiplyOperators<TSelf,TOther,TResult> Interface

Définition

Définit un mécanisme pour le calcul du 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 multipliera TSelf.

TResult

Type qui contient le produit de TSelf et TOther.

Dérivé

Opérateurs

CheckedMultiply(TSelf, TOther)

Multiplie deux valeurs ensemble pour calculer leur produit.

Multiply(TSelf, TOther)

Multiplie deux valeurs ensemble pour calculer leur produit.

S’applique à