UInt32.Clamp(UInt32, UInt32, UInt32) Metodo

Definizione

Blocca un valore a un valore minimo e massimo inclusivo.

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

Parametri

value
UInt32

Valore da bloccare.

min
UInt32

Minimo inclusivo al quale value deve essere bloccato.

max
UInt32

Massimo inclusivo al quale value deve essere bloccato.

Restituisce

Risultato del value blocco all'intervallo inclusivo di min e max.

Implementazioni

Si applica a