This Blog is about some useful link and some interview question in.Net. I am trying to give some useful information to you .
Thursday, 22 October 2009
Difference between catch(Exception ex) and catch
try { } catch(Exception ex) { //Catches all cls-compliant exceptions } catch { //Catches all other exception including the non-cls compliant exceptions. }