Condividi tramite


BitOperations.Log2 Metodo

Definizione

Overload

Log2(UIntPtr)

Restituisce il logaritmo (floor) Integer del valore specificato, in base 2.

Log2(UInt32)

Restituisce il logaritmo (floor) Integer del valore specificato, in base 2.

Log2(UInt64)

Restituisce il logaritmo (floor) Integer del valore specificato, in base 2.

Log2(UIntPtr)

Origine:
BitOperations.cs
Origine:
BitOperations.cs
Origine:
BitOperations.cs

Importante

Questa API non è conforme a CLS.

Restituisce il logaritmo (floor) Integer del valore specificato, in base 2.

public:
 static int Log2(UIntPtr value);
[System.CLSCompliant(false)]
public static int Log2 (UIntPtr value);
[<System.CLSCompliant(false)>]
static member Log2 : unativeint -> int
Public Shared Function Log2 (value As UIntPtr) As Integer

Parametri

value
UIntPtr

unativeint

Valore.

Restituisce

Valore logaritmo.

Attributi

Commenti

Per convenzione, il valore di input 0 restituisce 0 perché log(0) non è definito.

Si applica a

Log2(UInt32)

Origine:
BitOperations.cs
Origine:
BitOperations.cs
Origine:
BitOperations.cs

Importante

Questa API non è conforme a CLS.

Restituisce il logaritmo (floor) Integer del valore specificato, in base 2.

public:
 static int Log2(System::UInt32 value);
[System.CLSCompliant(false)]
public static int Log2 (uint value);
[<System.CLSCompliant(false)>]
static member Log2 : uint32 -> int
Public Shared Function Log2 (value As UInteger) As Integer

Parametri

value
UInt32

Numero da cui ottenere il logaritmo.

Restituisce

Logaritmo del valore specificato, in base 2.

Attributi

Commenti

Si noti che per convenzione, il valore di input 0 restituisce 0 perché Log(0) non è definito.

Si applica a

Log2(UInt64)

Origine:
BitOperations.cs
Origine:
BitOperations.cs
Origine:
BitOperations.cs

Importante

Questa API non è conforme a CLS.

Restituisce il logaritmo (floor) Integer del valore specificato, in base 2.

public:
 static int Log2(System::UInt64 value);
[System.CLSCompliant(false)]
public static int Log2 (ulong value);
[<System.CLSCompliant(false)>]
static member Log2 : uint64 -> int
Public Shared Function Log2 (value As ULong) As Integer

Parametri

value
UInt64

Numero da cui ottenere il logaritmo.

Restituisce

Logaritmo del valore specificato, in base 2.

Attributi

Commenti

Si noti che per convenzione, il valore di input 0 restituisce 0 perché Log(0) non è definito.

Si applica a