Advertisement
Fhernd

UsoQueue.cs

Mar 26th, 2016
3,698
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.69 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement