3

有没有办法XElement从给定的 XML 字符串生成 C# 中的表示?

基本上我想要实现的是来自这样的字符串:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0">
  <channel>
    <title>RSS Channel Title</title>
    <description>RSS Channel Description.</description>
    <link>http://aspiring-technology.com</link>
    <item>
      <title>First article title</title>
      <description>First Article Description</description>
    </item>
  </channel>
</rss>

像这样的字符串:

XDocument doc = new XDocument(
   new XDeclaration("1.0", "utf-8", "yes"),
   new XElement("rss", 
       new XAttribute("version", "2.0"),
       new XElement ("channel",
           new XElement("title", "RSS Channel Title"),
           new XElement("description", "RSS Channel Description."),
           new XElement("link", "http://aspiring-technology.com"),
           new XElement("item",
               new XElement("title", "First article title"),
               new XElement("description", "First Article Description")
           )
       )
    );

真的很感激任何提示!

4

2 回答 2

3

ReSharper 2016.1 具有将字符串转换为 XElement 或 XDocument 对象的上下文操作。

gif 示例它是如何工作的

于 2016-04-15T10:58:48.937 回答
1

看看这个XElement/XDocument 代码生成器。它使用 XSLT 转换从 XML 生成 c# 代码。如果我自己做,我可能会以同样的方式做。

于 2012-09-06T18:29:04.533 回答