Di seguito un frammento di codice per verificare se un array di interi sono presenti numeri pari.
C#
int[] arrayNumeriPari = [1, 2, 3, 4, 5, 13, 18, 27, 40, 53 ];
IEnumerable<int> arrayPari = arrayNumeriPari.Where(int.IsEvenInteger);
Debug.Write(string.Join(",", arrayPari)); //2,4,18,40
Nessun commento:
Posta un commento