Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- namespace Articulos.Pregunta.P1220
- {
- public class UsoQueue
- {
- public static void Main()
- {
- Queue<string> aplicaciones = new Queue<string>();
- aplicaciones.Enqueue("Notepad++");
- aplicaciones.Enqueue("Chrome");
- aplicaciones.Enqueue("PowerShell");
- aplicaciones.Enqueue("ClipMate");
- aplicaciones.Enqueue("Evernote");
- // Recorrido por los elementos de la lista:
- foreach (string aplicacion in aplicaciones)
- {
- Console.WriteLine (aplicacion);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement