Being new to programming I have only just found out that you can specifically catch certain types of errors and tie code to only that type of error.
I've been researching into the subject and I don't quite understand the syntax e.g.
catch (InvalidCastException e)
{
}
I understand the InvalidCastException is the type of error being handled, however I am unsure of what e is.
Could somebody please explain this?
catchblock and look atein the debugger!! – Jonathon Reinhart Dec 28 '12 at 17:33