C# Newtonsoft.Json josn处理

我这有一json {"no01":['小明','80','90','87','96'],"no02":['小海','84','91','82','93']}
怎么将这个json解析和获取相应的数据

我这场景是 winfom通过接口获取 学生的成绩信息

新手学习,还望大神解惑


        string s = "{\"no01\":['小明','80','90','87','96'],\"no02\":['小海','84','91','82','93']}";
        System.Collections.Generic.Dictionary<string, string[]> list = Newtonsoft.Json.JsonConvert.DeserializeObject<System.Collections.Generic.Dictionary<string, string[]>>(s);
        foreach (System.Collections.Generic.KeyValuePair<string, string[]> kv in list)
        {
            Response.Write(kv.Key + "" + String.Join("|", kv.Value) + "<BR>");
        }