I'm always on msn bro
<3
#edit
As I told you on msn, That wouldnt be a good idea when for example you have the code
Code:
static void GrabBiggestCocks(string Bob)
{
try
{
Socket.Send(PornHub.ToAddress + Bob);
}
catch
{
Socket.Disconnect();
Exception.Throw(Error);
}
}
In alot of cases, Try{} catch{} methods are good because you can take action like saving then disconnecting a client to stop any fatal errors happening/continueing AND reports an exception.
So like, You would do those try's and catch's etc because of that exception handler, but what if you want to report the exception and disconnect the socket on a thrown exception, You cant without those or extremely long inefficient programming.
To sum it up:
It wouldnt be efficient if you want to take different actions depending on the context of the exception being thrown.