Int128.Clamp(Int128, Int128, Int128) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將值限制為內含最小值和最大值。
public:
static Int128 Clamp(Int128 value, Int128 min, Int128 max) = System::Numerics::INumber<Int128>::Clamp;
public static Int128 Clamp (Int128 value, Int128 min, Int128 max);
static member Clamp : Int128 * Int128 * Int128 -> Int128
Public Shared Function Clamp (value As Int128, min As Int128, max As Int128) As Int128
參數
- value
- Int128
要限制的值。
- min
- Int128
應限制的 value
內含最小值。
- max
- Int128
應限制的 value
內含最大值。
傳回
限制為 和 max
內 min
含範圍的結果 value
。