If I want to preserve the stack trace and I have this catch block...
try
{
//Cause exception here...
}
catch (CustomException customEx)
{
//Handle custom exception here...
}
catch
{
throw;
}
Will the above catch (without parameter) rethrow the exception?