Is there a list of common object that implement IDisposable for the using statement?

前端 未结 9 2387
挽巷
挽巷 2020-12-17 15:10

I was wondering if there was some sort of cheat sheet for which objects go well with the using statement... SQLConnection, MemoryStream, etc.

9条回答
  •  清酒与你
    2020-12-17 15:38

    Microsoft FxCop has a rule checking that you use an IDisposbale in a using block.

提交回复
热议问题