Exception throwing

Posted by Ben Aston on Stack Overflow See other posts from Stack Overflow or by Ben Aston
Published on 2010-03-16T12:06:37Z Indexed on 2010/03/16 12:16 UTC
Read the original article Hit count: 244

Filed under:
|

In C#, will the folloing code throw e containing the additional information up the call stack?

...
catch(Exception e)
{
  e.Data.Add("Additional information","blah blah");
  throw;
}

© Stack Overflow or respective owner

Related posts about exceptions

Related posts about c#