如何使用 C # 的 XmlDocument 读取 XML 属性?
我有一个 XML 文件,看起来有点像这样:
<?xml version="1.0" encoding="utf-8" ?>
<MyConfiguration xmlns="http://tempuri.org/myOwnSchema.xsd" SuperNumber="1" SuperString="whipcream">
<Other stuff />
</MyConfiguration>
如何读取 XML 属性 SuperNumber 和 SuperString?
目前我正在使用 XmlDocument,并且在使用 XmlDocument 的 GetElementsByTagName()
之间获取值,这非常有效。我只是不知道如何获得属性?