✅ Is this necessary?

If using disposes of everything inside of it, why is this still a thing?
using (HttpClient client = new HttpClient(handler, true))
using (HttpResponseMessage resp = await client.GetAsync()) {
}
Wont HttpResponseMessage be disposed of once the client is finished anyway? o.O

Just wanting to understand it better, idk what other channels to use
Was this page helpful?