I have an array of string. I want to convert it to JSON and add the JSON directly to Queue.
Please tell me the steps.
strInput (Type String)=
Newtonsoft.Json.JsonConvert.SerializeObject(yourArrayVar)
It will upload your json as string var to the queue, then if you want to consume this queue and return back to the array just deserialize your string
Regards
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.