private void BtnLambdaMoltiplicazione_Click(object sender, EventArgs e)
{
int[] numeri = { 4, 5, 7, 9 };
var numeriAlQuadrato = numeri.Select(x => x * x);
foreach (var elemento in numeriAlQuadrato)
{
MessageBox.Show(elemento.ToString()); //16, 25, 49, 81
}
}
Nessun commento:
Posta un commento