0
0
llucycodes42
The code block tries to do something, but if something goes wrong, the code block sets up a catch block to catch any exceptions that may occur. The catch block executes whatever code is in the block, and then the code block ends.
Shortcut: tryf
try
{
}
catch (System.Exception ex)
{
// TODO
}
finally
{
}