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