IAdditionOperators<TSelf,TOther,TResult> Interfaz

Definición

Define un mecanismo para calcular la suma de dos valores.

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

Parámetros de tipo

TSelf

Tipo que implementa esta interfaz.

TOther

Tipo que se agregará a TSelf.

TResult

Tipo que contiene la suma de TSelf y TOther.

Derivado

Operadores

Addition(TSelf, TOther)

Agrega dos valores juntos para calcular su suma.

CheckedAddition(TSelf, TOther)

Agrega dos valores juntos para calcular su suma.

Se aplica a