Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- namespace cap07.colecciones
- {
- class TresMaestrosGenericos
- {
- public static void Main()
- {
- // Creación de un objeto Stack:
- Stack<string> tresMaestros = new Stack<string>();
- 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<string> coleccion)
- {
- foreach(string escritor in coleccion)
- {
- Console.Write(" {0}", escritor);
- }
- Console.WriteLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement