1

以下のようなコードがあるとしましょう

'Call service
Set xmlhttp_ = CreateObject("MSXML2.xmlhttp")
xmlhttp_.Open "GET", url, False
xmlhttp_.send
result = (xmlhttp_.responseText)

sendRequest = result

使用後に廃棄する必要がありxmlhttp_ますか?

4

1 に答える 1

2

範囲外になるとすぐに自動的に廃棄されます。ここでマシューカーランドの応答を参照してください:

https://groups.google.com/forum/?hl=en&fromgroups#!topic/microsoft.public.dotnet.languages.vb/3pw-TGc9PSo

于 2012-07-27T19:33:46.110 に答える