示例#1
0
        static void Main(string[] args)
        {
            StackArray <int> s = new StackArray <int>();

            s.Push(110);
            Console.WriteLine("Hello World!");
            Console.WriteLine(s.Peek());
        }