Sub hoge(ByRef a) set a=CreateObject("Scripting.Di […]
Sub hoge(ByRef a) set a=CreateObject("Scripting.Di […]
Sub hoge(ByRef a)set a=CreateObject("Scripting.Dictionary")a.Add "a","changed"End SubDim xset x=CreateObject("Scripting.Dictionary")x.Add "a","not change"hoge xWScript.Echo x("a")