Diffrence b/w “try/catch” keyword and “TRY/CATCH” macro.
Posted by Saket Kumar on August 13, 2008
Que: What is the diffrence b/w “try/catch” keyword and “TRY/CATCH” macro.
Ans: The major difference between the macros and the keywords is that code using the macros “automatically” deletes a caught exception when the exception goes out of scope. Code using the keywords does not, so you must explicitly delete a caught exception.