Beispiel #1
0
        static void Main(string[] args)
        {
            ArrayDemo a = new ArrayDemo();

            a.arrayInt();
            Console.ReadKey();

            Console.Clear();
            a.arrayString();
            Console.ReadKey();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Hello, WORLD !");

            ArrayDemo ad = new ArrayDemo();

            ad.arrayInt();//dừng màn hình lại để xem thông tin hàm writeline

            Console.Clear();

            ad.arrayString();
            Console.ReadKey();
        }