我无法使用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
答案 0 :(得分:0)
获取所有内容属性:
content = elements.Select(x => x.content)
答案 1 :(得分:0)
这不是有效的JSON字符串。