简体   繁体   中英

Access #element in json object

Given the following:

在此输入图像描述

How do I access the #text element? I've tried:

json.Viewer.StatPackages.StatPackage[0].Name.#text
json.Viewer.StatPackages.StatPackage[0].Name.text
json.Viewer.StatPackages.StatPackage[0].Name.text()
json.Viewer.StatPackages.StatPackage[0].Name.ToString()

Thanks!

Square bracket notation, just like your [0] . This lets you pass the result of any expression. In your case, you'd just use a string literal "#text" . So it's .Name["#text"] .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM