I have a JSON and part of it contains a string values like
 "parent_crumbs": [
    "Platforms",
    "STATS , EXPE , ESTAP",
    "Portal"
],
I use the below code to read the value from the JSON object
 JObject _task; //parse the JSON to JOBJECT first               
 string values=    (string)_task["parent_crumbs"].ToString();
This will return a string with square brackets and all quotes only.
How can i convert this to a string array in C#
I can remove [ and ] and then split on , But when , is present in string items middle the entire assumptions will break. So is any methods availabe to read from JArray to String Array
IEnumerable<string > strings= _task[“parent_crumbs”].Select(s=>s.Value<string>();