码迷,mamicode.com
首页 > 其他好文 > 详细

XML 增加属性

时间:2014-07-29 10:24:58      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:style   ar   line   new   res   load   ad   height   

 

var resultDoc = new XmlDocument();

resultDoc.LoadXml("<root></root>");

resultDoc.DocumentElement.SelectSingleNode("//root")

-------------------------以下为主要内容

XmlAttribute attr = xmldoc.CreateAttribute("name"); 

attr.Value = "张三";

doc..Attributes.SetNamedItem(attr);

--------------------------

结果<root name=‘张三‘></root>

 

XML 增加属性,布布扣,bubuko.com

XML 增加属性

标签:style   ar   line   new   res   load   ad   height   

原文地址:http://www.cnblogs.com/wdw31210/p/3873696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!