首页 > 学院 > 开发设计 > 正文

linq读取xml

2019-11-14 16:13:32
字体:
来源:转载
供稿:网友

xml 文件如下:

<?xml version="1.0" encoding="utf-8" ?>
<nodes>
<node>
<项目类型>农用地转用</项目类型>
</node>
</nodes>

 

相关的代码如下:

string xmlPath = application.StartupPath + @"/config.xml";XDocument xd = XDocument.Load(xmlPath);string xmlx = "";foreach (XElement item in xd.Root.Descendants("node"))//得到每一个node节点,得到这个节点再取他的xmlx的这个节点{xmlx=item.Element("项目类型").Value;}

  

 


上一篇:linqtoxml

下一篇:C#实现加简单的Http请求

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表