Skip to content

Instantly share code, notes, and snippets.

@NicoVermeir
Created February 29, 2016 08:37
Show Gist options
  • Save NicoVermeir/7084272960ca5eb8520a to your computer and use it in GitHub Desktop.
Save NicoVermeir/7084272960ca5eb8520a to your computer and use it in GitHub Desktop.
public class RestClient
{
private static HttpClient _client;
public static HttpClient GetClientInstance()
{
if (_client == null)
_client = new HttpClient();
return _client;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment