.NET: what does "throw;" by itself do?

Posted by Craig Johnston on Stack Overflow See other posts from Stack Overflow or by Craig Johnston
Published on 2010-04-28T10:33:25Z Indexed on 2010/04/28 10:43 UTC
Read the original article Hit count: 223

Filed under:
|
|

What would be the point of just having:

catch (Exception)
{
    throw;
}

What does this do?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about c#