如何从JSON反序列化以下格式?

时间:2015-07-07 11:34:07

标签: c# json json.net

如何使用NewtonSoft.json反序列化以下格式。我尽力请尽快提供答案

cat log.file | grep -o '[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}' | sort | uniq

2 个答案:

答案 0 :(得分:0)

如果您想获得房产价值,请尝试这样做
var result = GetJsonResult() as JsonResult;
JsonResult propertyValue = (JsonResult)result.Data.GetType().GetProperty("propertyName").GetValue(result.Data, null);

答案 1 :(得分:0)

你试过json.net吗?

你很简单,你只需这样做:

YourClass variableName = JsonConvert.DeserializeObject<YourClass>(jsonStringVariable);

在这种情况下,如果它是一个列表,它将是这样的:

List<YourClass> variableName = JsonConvert.DeserializeObject<List<YourClass>>(jsonStringVariable);