读取xml文件指定节点下的值

前端之家收集整理的这篇文章主要介绍了读取xml文件指定节点下的值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#region 读取xml文件指定节点下的值 XmlDocument xmlDoc = new XmlDocument(); xmlDoc.LoadXml(result); XmlNode root = xmlDoc.SelectSingleNode("//response"); if (root != null) { string error = (root.SelectSingleNode("error")).InnerText; } #endregion 原文链接:https://www.f2er.com/xml/295166.html

猜你在找的XML相关文章