fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Articulos.Pregunta.P1220
  5. {
  6. public class UsoQueue
  7. {
  8. public static void Main()
  9. {
  10. Queue<string> aplicaciones = new Queue<string>();
  11.  
  12. aplicaciones.Enqueue("Notepad++");
  13. aplicaciones.Enqueue("Chrome");
  14. aplicaciones.Enqueue("PowerShell");
  15. aplicaciones.Enqueue("ClipMate");
  16. aplicaciones.Enqueue("Evernote");
  17.  
  18. // Recorrido por los elementos de la lista:
  19. foreach (string aplicacion in aplicaciones)
  20. {
  21. Console.WriteLine (aplicacion);
  22. }
  23. }
  24. }
  25. }
Success #stdin #stdout 0.04s 23952KB
stdin
Standard input is empty
stdout
Notepad++
Chrome
PowerShell
ClipMate
Evernote