BigInteger.Clamp(BigInteger, BigInteger, BigInteger) Metodo

Definizione

Blocca un valore a un valore minimo e massimo inclusivo.

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

Parametri

value
BigInteger

Valore da bloccare.

min
BigInteger

Valore minimo inclusivo al quale value deve essere bloccato.

max
BigInteger

Valore massimo inclusivo al quale value deve essere bloccato.

Restituisce

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

Implementazioni

Si applica a