Exemplo n.º 1
0
        public static void TestAsyncAwait()
        {
            var testThread = new AsyncAwaitExample();

            testThread.DoWork();

            while (true)
            {
                Console.WriteLine("Doing work on the Main Thread !!");
            }
        }