Possible Duplicate:
When to use try/catch blocks?
Main method code entirely inside try/catch: Is it bad practice?
When to use Try Catch blocks
Exceptions can occur about anywhere, so this made me think: should I always wrap my code in try..catch blocks?
This is for C#.
(I might be missing something fundamental here, as I'm still a newbie)
EDIT: It appears that this was indeed not a very smart question. The only thing we have learnt at school is to use try...catch to prevent crashes. What we did with the exception was showing a MessageBox to tell the user that 'something went wrong when writing this file'.