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