fork download
  1. // ===++===
  2. //
  3. // OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Clase: UsoSelect.cs
  9. //
  10. // Propósito: Demostración de la clausula where.
  11. //
  12. ============================================================*/
  13.  
  14. using System;
  15. using System.Collections.Generic;
  16. using System.Linq;
  17.  
  18. namespace Recetas.Cap02
  19. {
  20. internal class UsoSelect
  21. {
  22. public static void Main()
  23. {
  24. // Creación de lista genérica con tipos int:
  25. List<int> puntajes = new List<int>() {97, 92, 81, 60};
  26.  
  27. // Creación de consulta:
  28. IEnumerable<int> puntajesAlto = from puntaje in puntajes where puntaje > 80 select puntaje;
  29.  
  30. // Iteración de la consulta:
  31. foreach (int puntaje in puntajesAlto)
  32. {
  33. Console.Write("{0} ", puntaje.ToString());
  34. }
  35.  
  36. Console.WriteLine();
  37. }
  38. }
  39. }
Success #stdin #stdout 0.03s 34000KB
stdin
Standard input is empty
stdout
97 92 81