c# 检查xml格式是否正确
2 回答
子衿沉夜
TA贡献1828条经验 获得超3个赞
需要引用
using System.Xml;
XmlDocument doc = new XmlDocument();
doc.LoadXml(xmlStr);
// 表集合
XmlNodeList nodeList_Table = doc.SelectSingleNode("DATA").ChildNodes;
// 行集合
XmlNodeList nodeList_Row = node_Table.ChildNodes;
// 列集合
XmlNodeList nodeList_Col = node_Row.ChildNodes;
- 2 回答
- 0 关注
- 1472 浏览
添加回答
举报
0/150
提交
取消