IMinMaxValue<TSelf> 接口

定义

定义用于获取类型的最小值和最大值的机制。

generic <typename TSelf>
 where TSelf : IMinMaxValue<TSelf>public interface class IMinMaxValue
public interface IMinMaxValue<TSelf> where TSelf : IMinMaxValue<TSelf>
type IMinMaxValue<'Self (requires 'Self :> IMinMaxValue<'Self>)> = interface
Public Interface IMinMaxValue(Of TSelf)

类型参数

TSelf

实现此接口的类型。

派生

属性

MaxValue

获取当前类型的最大值。

MinValue

获取当前类型的最小值。

适用于