Advertisement
Fhernd

UsoStack.cs

Mar 26th, 2016
3,686
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.68 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Articulos.Pregunta.P1220
  5. {
  6.     public class UsoStack
  7.     {
  8.         public static void Main()
  9.         {
  10.             Stack<string> aplicaciones = new Stack<string>();
  11.            
  12.             aplicaciones.Push("Notepad++");
  13.             aplicaciones.Push("Chrome");
  14.             aplicaciones.Push("PowerShell");
  15.             aplicaciones.Push("ClipMate");
  16.             aplicaciones.Push("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