using
キーワードの使用について質問があります。私は次のコードを持っています:
try {
using (System.Net.WebResponse response = httpWebRequest.GetResponse()) {
throw new Exception("Example");
}
}
catch ( Exception ex ) {
}
私の質問は、例外が発生すると接続が閉じられるかどうかです。または、キャッチ内の接続を閉じる必要がありますか?