DoWork() public method

public DoWork ( ) : Task
return Task
Example #1
0
 /// <summary>
 /// Runs all 3 variations of the MoreRealistic code to ensure
 /// they all have the same result
 /// </summary>
 /// <returns></returns>
 static async Task MoreRealisticMainAsync()
 {
     var worker = new MoreRealisticAsyncWorker();
     await worker.DoWork();
     await worker.DoWorkExplicitTasks();
     await worker.DoWorkWithoutAwait();
 }
Example #2
0
        /// <summary>
        /// Runs all 3 variations of the MoreRealistic code to ensure
        /// they all have the same result
        /// </summary>
        /// <returns></returns>
        static async Task MoreRealisticMainAsync()
        {
            var worker = new MoreRealisticAsyncWorker();
            await worker.DoWork();

            await worker.DoWorkExplicitTasks();

            await worker.DoWorkWithoutAwait();
        }