Does the using catch the exception or throw it? i.e.
using (StreamReader rdr = File.OpenText("file.txt"))
{
//do stuff
}
If the streamreader throws an exception is it caught by using or thrown so the calling function can handle it?
|
|
Does the using catch the exception or throw it? i.e.
If the streamreader throws an exception is it caught by using or thrown so the calling function can handle it?
|
|||
|
|
|
|
using statements do not eat exceptions. All "Using" does is scope your object to the using block, and automatically calls Dispose() on the object when it leaves the block. There is a gotcha though, if a thread is forcefully aborted by an outside source, it is possible that Dispose will never be called. |
||||||||||||
|
|
|
Any exceptions that are thrown in the initialization expression of the using statement will propagate up the method scope and call stack as expected. One thing to watch out for, though, is that if an exception occures in the initialization expression, then the Dispose() method will not be called on the expression variable. This is almost always the behavior that you would want, since you don't want to bother disposing an object that was not actually created. However, there could be an issue in complex circumstances. That is, if multiple initializations are buried inside the constructor and some succeed prior to the exception being thrown, then the Dispose call may not occur at that point. This is usually not a problem, though, since constructors are usually kept simple. |
||||
|
|
|
You can imagine using as a try...finally block without the catch block. In the finally block, IDisposable.Dispose is called, and since there is no catch block, any exceptions are thrown up the stack. |
||
|
|
|
|
*barring the usual suspects like power failure, nuclear holocaust, etc |
||
|
|
|
|
It throws the exception, so either your containing method needs to handle it, or pass it up the stack.
|
||
|
|
|
|
When you see a using statement, think of this code:
So the real answer is that it doesn't do anything with the exception thrown in the body of the using block. It doesn't handle it or rethrow it. |
||
|
|
|
|
"using" does not catch exceptions, it just disposes of resources in the event of unhandled exceptions. Perhaps the question is, would it dispose of resources allocated in the parentheses if an error also occured in the declaration? It's hard to imagine both happening, though. |
||
|
|
|
|
The using does not interfere with exception handling apart from cleaning up stuff in its scope. It doesn't handle exceptions but lets exceptions pass through. |
||
|
|
|
|
|
||
|
|
|
|
If you don't specifically catch an exception it's thrown up the stack until something does |
||
|
|
|
|
It is thrown. |
||
|
|