When using the try catch block in Visual Studio 2005, we cannot have:
For some reason, we cannot use the (...) in the catch part for exception handling. Is there a way to do this in Visual Studio 2005 so that the code in the catch part would be run for every exception?
Code:
try{
[something]
} catch [B](...)[/B] {
[something]
}
Comment