Question

Possible Duplicate:
What is the C# Using block and why should I use it?

If I ran the following code:

using (SPWeb web = SPContext.Current.Site.OpenWeb("/myweb")){

   //error happens here
}

Would the object web be disposed of properly if an error occurred before the closing bracket?

We were told that using using statements for our OpenWeb object was the best but
we are seeing a lot of errors in the logs about SPRequests and SPWeb.

Was it helpful?

Solution

Yep, that's kind of the whole point. It's syntactic sugar for:

SomeType obj = new SomeType();
try
{
    // do stuff with obj
    // if an exception is thrown then the finally block takes over
}
finally
{
    if(obj != null)
        obj.Dispose();
}

OTHER TIPS

See MSDN for a full explanation of exactly what "using" does: http://msdn.microsoft.com/en-us/library/yh598w02.aspx

Short answer is yes, since the Dispose is in a finally clause.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top