G
Guest
Hello I know this is extremely basic, I just want to make sure I got it right.
is:
try{}
catch{}
the same as
try{}
catch(System.Exception e){}
I mean if I am not using the reference to the exception then I should simply
use
catch{}? or is catch(System.Exception){} somehow more restricted on what it
catches than simply catch{}?
Thanks in advance
JT.
is:
try{}
catch{}
the same as
try{}
catch(System.Exception e){}
I mean if I am not using the reference to the exception then I should simply
use
catch{}? or is catch(System.Exception){} somehow more restricted on what it
catches than simply catch{}?
Thanks in advance
JT.