IMultiplyOperators<TSelf,TOther,TResult> Interfaz

Definición

Define un mecanismo para calcular el producto de dos valores.

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)

Parámetros de tipo

TSelf

Tipo que implementa esta interfaz.

TOther

Tipo que multiplicará TSelf.

TResult

Tipo que contiene el producto de TSelf y TOther.

Derivado

Operadores

CheckedMultiply(TSelf, TOther)

Multiplica dos valores juntos para calcular su producto.

Multiply(TSelf, TOther)

Multiplica dos valores juntos para calcular su producto.

Se aplica a