Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. using System;
  2. using System.Threading.Tasks;
  3.  
  4. namespace csharp71
  5. {
  6. class Program
  7. {
  8. static async Task Main(string[] args)
  9. {
  10. await Task.Run(() =>
  11. {
  12. Console.WriteLine("Hello World!");
  13. Console.ReadKey();
  14. });
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement