Which is better, and when: using statement or calling Dispose() on an IDisposable in C#?

前端 未结 5 962
野趣味
野趣味 2020-12-19 07:36

Suppose I have the following:

using(var ctx = DataContextFactory.Create(0))
{ ... Some code ... }

Why not just do the following and lose a

相关标签:
5条回答
  • 2020-12-19 07:58

    The only place you don't want to use a using block is where the disposable object is scoped outside of the function. In this case, your class should implement IDisposable and dispose of the object in its Dispose().

    0 讨论(0)
  • 2020-12-19 08:01

    Where you can, use using for the reasons Marc cites. OTOH this isn't a brain dead solution as sometimes the lifetime of the object can't be defined as a lexical scope so use it reasonably.

    0 讨论(0)
  • 2020-12-19 08:02

    The using statement gives you nice syntax plus exception protection. You cannot leave the using statement without calling Dispose (it translates into a finally block with a call to dispose). In your second scenario, if you had an exception between the Create and the Dispose, you would not call dispose directly. Which is not a problem unless you are using unmanaged resources, but if you are, you will leak.

    0 讨论(0)
  • 2020-12-19 08:20

    The first is better. It ensures it is disposed even if an exception is thrown, and it correctly handles the case where Create(0) returns null (i.e. it doesn't attempt to call Dispose() on a null instance).

    0 讨论(0)
  • 2020-12-19 08:24

    A using statement is always better because...

    • you can't forget to call Dispose(), even as the code evolves into different code paths
    • Dispose() gets called even if there's an exception. It also checks for null before calling Dispose(), which may be useful (assuming you're not just calling new).

    One non-obvious (to me, anyway) trick with using is how you can avoid excessive nesting when you have multiple disposable objects:

    using (var input = new InputFile(inputName))
    using (var output = new OutputFile(outputName))
    {
        input.copyTo(output);
    }
    

    The VS code formatter will leave the two statements starting in the same column.


    In fact, in some situations you don't even have to repeat the using statement...

    using (InputFile input1 = new InputFile(inputName1), input2 = new InputFile(inputName2))
    

    However, the restrictions for declaring multiple variables on the same line applies here so the types must be the same and you cannot use the implicit type var.

    0 讨论(0)
提交回复
热议问题