UInt128.IsEvenInteger(UInt128) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Determina se un valore rappresenta un numero integrale pari.
public:
static bool IsEvenInteger(UInt128 value) = System::Numerics::INumberBase<UInt128>::IsEvenInteger;
public static bool IsEvenInteger (UInt128 value);
static member IsEvenInteger : UInt128 -> bool
Public Shared Function IsEvenInteger (value As UInt128) As Boolean
Parametri
- value
- UInt128
Restituisce
true
se è un intero pari; in caso value
contrario, false
.
Implementazioni
Commenti
Questo metodo gestisce correttamente i valori a virgola mobile e 2.0
quindi restituirà true
mentre 2.2
restituirà false
.
Un valore restituito di false
non implica che IsOddInteger(TSelf) restituirà true
. Un numero con una parte frazionaria, ad esempio , 3.3
non è nemmeno o dispari.