IEqualityOperators<TSelf,TOther,TResult> 接口

定义

定义用于比较两个值以确定相等性的机制。

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

类型参数

TSelf

实现此接口的类型。

TOther

将与 进行比较 TSelf的类型。

TResult

作为比较结果返回的类型。

派生

运算符

Equality(TSelf, TOther)

比较两个值以确定相等性。

Inequality(TSelf, TOther)

比较两个值以确定不相等性。

适用于