UIレイヤのtry-catchとnティアアプリケーションの優れた練習との組み合わせはどれですか?try-catch-finallyを使用して練習してください
1.
try
{
//Statements
}
catch
{
throw
}
finally
{
//cleanup codes
}
OR
2.
try
{
// statements
}
catch(Exception ex)
{
}
finally
{
// clean up
}
とUI層で
try{
}
catch(Exception ex)
{
Log(ex);
}
finally
{
//clean up
}
可能な複製[try try catch](http://stackoverflow.com/questions/523875/where-to-put-try-catch) – slugster
ここでは、[どのようにしてtry catch例外を処理するブロック](http://stackoverflow.com/questions/2430823/how-and-where-do-we-write-try-catch-block-to-handle-exception)を参照してください。これらはちょうど検索をしなくても*関連の質問*パネルから選んだちょうど2つの質問でした。 – slugster
"クリーンアップ"と書かれていることは、おそらく全体が 'using'ステートメントで置き換えられるべきであることを示しています。 –