在Json数组中获取元素

时间:2018-06-21 22:08:24

标签: arrays json

我无法使用C#从json数组中获取值。

这是json代码:

{"page":0,"maxElementsPerPage":"2","maxElements":"2","elements":[{"timestamp":"2018-06-20 19:59:30","content":"abc","lat":"...","lng":"..."},...

我一直用来获取例如第一个数组中的content的值为:

elements[0].content

2 个答案:

答案 0 :(得分:0)

获取所有内容属性:

content = elements.Select(x => x.content)

答案 1 :(得分:0)

这不是有效的JSON字符串。