博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#读取XML C#写入XML
阅读量:6237 次
发布时间:2019-06-22

本文共 1048 字,大约阅读时间需要 3 分钟。

///   /// 返回XMl文件指定元素的指定属性值  ///   /// 指定元素  /// 指定属性  /// 
public static string getXmlValue(string xmlElement, string xmlAttribute) {
var Current = Directory.GetCurrentDirectory();//获取当前根目录 XDocument xmlDoc = XDocument.Load(Current + "/config.xml"); var results = from c in xmlDoc.Descendants(xmlElement) select c; string s = ""; foreach (var result in results) {
s = result.Attribute(xmlAttribute).Value.ToString(); } return s; } /// /// 设置XMl文件指定元素的指定属性的值 /// /// 指定元素 /// 指定属性 /// 指定值 public static void setXmlValue(string xmlElement, string xmlAttribute, string xmlValue) {
var Current = Directory.GetCurrentDirectory();//获取当前根目录 XDocument xmlDoc = XDocument.Load(Current + "/config.xml"); xmlDoc.Element("Soft").Element(xmlElement).Attribute(xmlAttribute).SetValue(xmlValue); xmlDoc.Save(Current + "/config.xml"); }

转载于:https://www.cnblogs.com/zhuduozhe/archive/2012/01/12/2320353.html

你可能感兴趣的文章
HAProxy安装使用
查看>>
Serving websites from svn checkout considered harmful
查看>>
Java中Split函数的用法技巧
查看>>
iOS
查看>>
xenserver introduce “Local Storage”
查看>>
25万个虚拟机的实验环境 -VMworld 2011 动手实验室内幕曝光
查看>>
Supporting Python 3——不使用2to3转换支持Python 2和Python 3
查看>>
分布式存储系统MogileFS(一)之基本概念
查看>>
Zabbix宏使用及用户自定义监控
查看>>
网络社交如何保护个人隐私?做好这4步
查看>>
mysqlbinlog 命令筛选时间段某表操作记录
查看>>
python 简单擦错误记录
查看>>
css float
查看>>
SQL*Plus中的Echo
查看>>
云计算技术的产生、概念、原理和前景
查看>>
test
查看>>
将自己的项目部署在github上
查看>>
oracle 启动关闭周期
查看>>
【经典数据结构】B树与B+树
查看>>
c++学习 定位new表达式
查看>>