Thursday, January 31, 2013

throw an exception in C#

This per this:

catch (EndOfStreamException end)
{
   throw (e);
}
catch (NullReferenceException nullRef)
{
   throw (nullRef);
}

No comments:

Post a Comment