Skip to content

Instantly share code, notes, and snippets.

@babaktaremi
Created March 31, 2021 16:02
Show Gist options
  • Save babaktaremi/0b10b5a3f8cb2f147fd64f2e3001d70b to your computer and use it in GitHub Desktop.
Save babaktaremi/0b10b5a3f8cb2f147fd64f2e3001d70b to your computer and use it in GitHub Desktop.
class SomeTask
{
public Task<string> GetGoogleContent()
{
using HttpClient client = new HttpClient();
return client.GetStringAsync("https://google.com");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment