Rückkehr im Catch-Block?

Ist, ist falsch, um eine return-Anweisung im catch-block?
Was sind die alternativen?
ich.e:

public bool SomeFunction()
{
    try
    {
        //somecode
        return true;
    }
    catch(Exception ex)
    {
        MessageBox.Show(ex.message);
        return false;
    }

}
Kommentar zu dem Problem

InformationsquelleAutor der Frage lowlyintern | 2010-04-22

Schreibe einen Kommentar