Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections;
- namespace cap07.colecciones
- {
- class TresMaestros
- {
- public static void Main()
- {
- // Creación de un objeto Stack:
- Stack tresMaestros = new Stack();
- tresMaestros.Push("Dostoievskiy");
- tresMaestros.Push("Balzac");
- tresMaestros.Push("Dickens");
- Console.WriteLine("Número de elementos: {0}", tresMaestros.Count);
- Console.WriteLine("Elementos: ");
- ImprimirContenido(tresMaestros);
- }
- public static void ImprimirContenido(IEnumerable coleccion)
- {
- foreach(Object escritor in coleccion)
- {
- Console.Write(" {0}", escritor);
- }
- Console.WriteLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement