Final Exception Funny
/Think you know about exceptions? What would this method return?
static int funAndGames()
{
int result = 99;
try
{
throw new Exception("Boom");
}
catch
{
return result;
}
finally
{
result = 100;
}
}