.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

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -