Example #1
0
        static void Main(string[] args)
        {
            MyThread t1 = new MyThread();

            t1.StartThread();
            for (int i = 0; i < 100; i++)
            {
                Console.SetCursorPosition(i, 0);
                Console.Write("-");
                Thread.Sleep(1000);
            }
        }