Ejemplo n.º 1
0
        static void Main()
        {
            Stack<int> test = new Stack<int>();

            for (int i = 1; i <= 20; i++)
            {
                test.Push(i);
            }

            for (int i = 0; i < 20; i++)
            {
                Console.WriteLine("{0} -- Count: {1}", test.Pop(), test.Count());
            }
        }