BADF00D / DisposableFixer

This is a Visual Studio Extension and NuGet package that should identify and fix problems as memleaks while using IDisposables.
Other
35 stars 7 forks source link

Add System.Net.Http.StreamContext as tracking Disposable #155

Open BADF00D opened 3 years ago

BADF00D commented 3 years ago

Prerequisites

Description

Source Code

var ms = new MemoryStream();
ExcelWorkbookCreator.CreateWorkbookWithOneSheet(ms, _importData);
RequestContent = new StreamContent(ms);

Screenshot

image