Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Python has a nice keyword since 2.6 called with. Is there something similar in C#?

share|improve this question

2 Answers

The equivalent is the using statement

An example would be

  using (var reader = new StreamReader(path))
  {
    DoSomethingWith(reader);
  }

The restriction is that the type of the variable scoped by the using clause must implement IDisposable and it is its Dispose() method that gets called on exit from the associated code block.

share|improve this answer

C# has the using statement, as mentioned in another answer and documented here:

However, it's not equivalent to Python's with statement, in that there is no analog of the __enter__ method.

In C#:

using (var foo = new Foo()) {

    // ...

    // foo.Dispose() is called on exiting the block
}

In Python:

with Foo() as foo:
    # foo.__enter__() called on entering the block

    # ...

    # foo.__exit__() called on exiting the block

More on the with statement here:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.