using Newtonsoft.Json.Linq;//添加的引用,Newtonsoft.dll可以到guget里面下载
string json="json字符串"
JObject json = JObject.Parse(jsn);
string jsontext = json["jsontext"].ToString();//获取数组中对应的jsontext字段的值
List<pr> lst= JsonConvert.DeserializeObject<List<pr>>(jsontext );
foreach (var item in lst)//获取list<pr>对应的值
                {
                    item.codeitem.data 
item.msg 
                } 
 
 public class pr {
            public string code { get; set; }
            public string data { get; set; }
            public string msg { get; set; }
        }