Tagged Questions
11
votes
14answers
1k views
When are C# “using” statements most useful?
So a using statement automatically calls the dispose method on the object that is being "used", when the using block is exited, right?
But when is this necessary/beneficial?
For example let's say ...