VB6 アプリケーションではDictionary
、キーがString
s で値がカスタム クラスのインスタンスである があります。を呼び出すRemoveAll()
と、Dictionary
最初にカスタム オブジェクトが解放されますか? または、明示的に自分でこれを行う必要がありますか?
Dim d as Scripting.Dictionary
d("a") = New clsCustom
d("b") = New clsCustom
' Are these two lines necessary?
Set d("a") = Nothing
Set d("b") = Nothing
d.RemoveAll