static void Main()
        {
            CollectionsTest ct = new CollectionsTest();

            ct.MethodArrayList();
            ct.MethodHashTable();
            ct.MethodHashTable2();
            ct.MethodStack();
            ct.MethodSortedList();
            ct.MethodArray();
        }
示例#2
0
        static void Main()
        {
            CollectionsTest ct = new CollectionsTest();

            ct.MethodArrayList();
            ct.MethodHashTable();
            ct.MethodHashTable2();
            ct.MethodStack();
            ct.MethodSortedList();
            ct.MethodArray();
            Console.WriteLine("Success!!");
        }