从字符串创建XElement
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从字符串创建XElement相关的知识,希望对你有一定的参考价值。
Reading xml from file and create XElement from string
// read xml document from file to a string string s_xml = System.IO.File.ReadAllText("deneme.xml"); // create xelement from string XElement e = XDocument.Parse(s_xml).Root; //then take value of a field you need string HeaderVersion = e.Element("HeaderVersion").Value;
以上是关于从字符串创建XElement的主要内容,如果未能解决你的问题,请参考以下文章
无法通过 XElement 创建名称中带有冒号的 XML 标记 [重复]