.net - System.Collections.ArrayList Object does not support (Children could not be evaluated) -


when debugging in vs15 , add watch list, says

children not evaluated.

the watch list.add(innerjson) has json string value (which expected behavior).

dim payloadjson dim currnode dim list : set list = createobject("system.collections.arraylist") if instr(credential_value, ",") > 0     each currnode in credential_value_arr         dim innerjson         assessmentid = currnode         innerjson = "{" & scrlf & _             "                 ""id"": """ & assessmentid & """" & scrlf & _             "                 ""value"": """ & assessmentid & """" & scrlf & _             "            }," & scrlf          list.add(innerjson)     next end if 

if have comments on vbscript. please let me know, , how can value of inner json.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -