我希望我的问题标题正确。我试图解析一些JSON字符串。我发现JSON.net非常有用。以下是我的JSON字符串的格式
{
"TotalRecords":2,
"Category":3,
"pRecords": [
[
"1",
"11/11/2015 09:35",
"Record 1",
"60"
],
[
"2",
"11/11/2015 10:40",
"Record 2",
"48.5"
]
]
}
我无法在SO上正确格式化JSON字符串,所以不要介意,因为这只是为了给出想法并解释问题。我现在被卡住了,因为我不知道如何解析pRecords数据,因为它没有任何名称,只有值。这可能是一个非常基本的问题,但在我的搜索过程中,我找不到解决方案。
用c#编写的代码
public class RootObject
{
public int TotalRecords { get; set; }
public int Category { get; set; }
public string[][] pRecords { get; set; }
}
使用json.net反序列化
JsonConvert.DeserializeObject<RootObject>('your json');