I am writing a Connection like class around an interop object. In particular, the closing of my connection is asynchronous. The object I am in
I've noticed that in some case, Visual Studio recommends to do this await using var disposable = new Disposable(); // Do something Instead of this using var di
I'm sure this is an easy question, but what am I supposed to do when handling an IDisposable object without the using statement?