Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 xmlreader 来解析有效的 xml 文件。我开始阅读并有一个这样的 if 语句:
if (reader.IsStartElement()) { // Code needed here
如何仅获取该起始元素的名称?
你可以检查的值reader.Name
reader.Name
if (reader.IsStartElement()) { if (reader.Name == "settings") { //do stuff
但正如其他人建议的那样,您可能想阅读更多关于 XmlReader 的文档,甚至可能考虑使用 XDocument 等简单地解析完整的 xml 文档。