mercoledì 10 luglio 2024

C# determinare il numero dispari tramite IsOddInteger .Net

Dalla versione .Net 7 in poi è possibile stabilire se un numero è dispari oppure no, questo tramite la proprietà IsOddInteger.
Di seguito un esempio di codice.

C#

 int[] arrayNumeri = [1, 2, 3, 4, 5, 13, 27, 40];
 IEnumerable<int> arraySoloDispari = arrayNumeri.Where(int.IsOddInteger); // Restituisce 1, 3, 5, 13 e 27

Nessun commento: