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 UsoStack
- {
- public static void Main()
- {
- Stack<string> aplicaciones = new Stack<string>();
- aplicaciones.Push("Notepad++");
- aplicaciones.Push("Chrome");
- aplicaciones.Push("PowerShell");
- aplicaciones.Push("ClipMate");
- aplicaciones.Push("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