BitsNPerices.Asyncronous.RunAsync C# (CSharp) Method

RunAsync() public method

public RunAsync ( ) : Task
return Task
        public async Task RunAsync()
        {
            string hotmail = await new WebClient().DownloadStringTaskAsync(new Uri("http://www.hotmail.com"));
            string result = await new WebClient().DownloadStringTaskAsync(new Uri("http://www.google.com"));
            Console.WriteLine(result);
        }