ISubtractionOperators<TSelf,TOther,TResult> Interface
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Define um mecanismo para calcular a diferença de dois valores.
generic <typename TSelf, typename TOther, typename TResult>
where TSelf : ISubtractionOperators<TSelf, TOther, TResult>public interface class ISubtractionOperators
public interface ISubtractionOperators<TSelf,TOther,TResult> where TSelf : ISubtractionOperators<TSelf,TOther,TResult>
type ISubtractionOperators<'Self, 'Other, 'Result (requires 'Self :> ISubtractionOperators<'Self, 'Other, 'Result>)> = interface
Public Interface ISubtractionOperators(Of TSelf, TOther, TResult)
Parâmetros de Tipo Genérico
- TSelf
O tipo que implementa esta interface.
- TOther
O tipo que será subtraído de TSelf.
- TResult
O tipo que contém o valor de TOther subtraído de TSelf.
- Derivado
Operadores
| Name | Description |
|---|---|
| CheckedSubtraction(TSelf, TOther) |
Subtrai dois valores para calcular a sua diferença. |
| Subtraction(TSelf, TOther) |
Subtrai dois valores para calcular a sua diferença. |