SByte.Clamp(SByte, SByte, SByte) 方法

定义

将值固定为非独占最小值和最大值。

public:
 static System::SByte Clamp(System::SByte value, System::SByte min, System::SByte max) = System::Numerics::INumber<System::SByte>::Clamp;
public static sbyte Clamp (sbyte value, sbyte min, sbyte max);
static member Clamp : sbyte * sbyte * sbyte -> sbyte
Public Shared Function Clamp (value As SByte, min As SByte, max As SByte) As SByte

参数

value
SByte

要固定的值。

min
SByte

应固定到的 value 非独占最小值。

max
SByte

应固定到的 value 非独占最大值。

返回

固定value到 和 maxmin非独占范围的结果。

实现

适用于