-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
doc-enhancementImprove the current contentImprove the current content
Description
We should call Dispose on objects that implement IDisposable in examples.
For example
HttpClient client = new HttpClient();
return client.GetStringAsync("https://docs.microsoft.com");
can be changed to
using (HttpClient client = new HttpClient())
{
return client.GetStringAsync("https://docs.microsoft.com");
}
Metadata
Metadata
Assignees
Labels
doc-enhancementImprove the current contentImprove the current content