Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program
- {
- static void Main(string[] args)
- {
- Task.WaitAll(ShowMessages());
- }
- static async Task ShowMessages()
- {
- Console.WriteLine("Hello There");
- await Task.Delay(250);
- Console.WriteLine("Thanks for seeing");
- await Task.Delay(250);
- Console.WriteLine("Hope anyone reply fast");
- await Task.Delay(250);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement