我正在使用 C# windows phone 8,我有以下 XML
<?xml version="1.0" encoding="UTF-8" ?>
<login res="SUCCESS" encstatus="DEFAULT" usedquota="0" />
我需要提取 res、encstatus 和 usedQuota 的值。
我如何在 xml 解析中做到这一点?
我试过这个
XDocument xDoc = XDocument.Parse(str);
var pol = xDoc.Element("res");
var items = xDoc.Descendants("res");
其中 str 是 xml 文件,但所有元素均为空/null。