I have the following variable of type {Newtonsoft.Json.Linq.JArray}.
{Newtonsoft.Json.Linq.JArray}
properties[\"Value\"] {[ { \"Name\": \"Username\", \"Selected\":
Use IList to get the JArray Count and Use Loop to Convert into List
var array = result["items"].Value(); IList collection = (IList)array; var list = new List(); for (int i = 0; i < collection.Count; j++) { list.Add(collection[i].ToString()); }