Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Linq;
- namespace Articulos.Cap04
- {
- public sealed class IntroLINQ
- {
- public static void Main()
- {
- // Partes fundamentales para hacer uso de LINQ>
- // 1. La fuente de datos>
- int[] numeros = new int[] { 0, 1, 2, 3, 4, 5, 6, 7 };
- // 2. Creación de la consulta:
- var numerosConsulta = from num in numeros where (num % 2) == 0 select num;
- // 3. Ejecución de la consulta:
- foreach (int numero in numerosConsulta)
- {
- Console.WriteLine( "{0,1}", numero.ToString());
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement