I am writing a class library in .Net 2.0. In it, there is an try catch block as follows:<BR><BR>try<BR>{<BR> //Do some stuff<BR><BR>}<BR>catch(Exception ex)<BR>{<BR> //Clean up some stuff<BR> throw; ...