Использование catch без аргументов

В чем разница между:

catch
{
    MessageBox.Show("Error.");
}

и:

catch (Exception ex)
{
    MessageBox.Show("Error.");
    //we never use ex, so is it better to use catch without arguments?
}
52
задан Christos 12 August 2015 в 03:38
поделиться