如何加载和读取XML文档

发布于 2024-12-19 05:36:45 字数 462 浏览 0 评论 0原文

我正在为我的 C# 应用程序使用 NET 2.0 WinForms。以前我使用.NET 4.0并使用以下代码来读取XML文档:

XDocument doc = XDocument.Load(spath);
foreach (XElement xe in doc.Elements("Snippets").Elements("Snippet"))
{
    string sName = (string)xe.Attribute("name");
    string sCode = xe.Element("SnippetCode").Value;
    listBox1.Items.Add(snippetName);
    snippets.Add(sCode);
}

但是,我不知道如何使用.NET 2.0获取属性和元素值。谁能帮助我吗?我知道我必须使用 XMLDocument,但除了在其中加载 XML 文档之外我什么都不知道。

I'm using NET 2.0 WinForms for my C# application. Previously I used .NET 4.0 and used the following code to read an XML document:

XDocument doc = XDocument.Load(spath);
foreach (XElement xe in doc.Elements("Snippets").Elements("Snippet"))
{
    string sName = (string)xe.Attribute("name");
    string sCode = xe.Element("SnippetCode").Value;
    listBox1.Items.Add(snippetName);
    snippets.Add(sCode);
}

However, I don't know how to get the attribute and element value with .NET 2.0. Can anyone help me? I know I have to use XMLDocument but I don't know anything beyond loading an XML document in that.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青丝拂面 2024-12-26 05:36:45

未经测试的代码,但我想你明白了:

        XmlDocument doc = new XmlDocument();
        doc.Load(spath);
        foreach (XmlElement xe in doc.DocumentElement.SelectNodes("/Snippets/Snippet"))
        {
            string sName = xe.Attributes["name"].Value;
            string sCode = xe.SelectSingleNode("/SnippetCode").InnerText;
            listBox1.Items.Add(snippetName);
            snippets.Add(sCode);
        }

Untested code, but I think you get the idea:

        XmlDocument doc = new XmlDocument();
        doc.Load(spath);
        foreach (XmlElement xe in doc.DocumentElement.SelectNodes("/Snippets/Snippet"))
        {
            string sName = xe.Attributes["name"].Value;
            string sCode = xe.SelectSingleNode("/SnippetCode").InnerText;
            listBox1.Items.Add(snippetName);
            snippets.Add(sCode);
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文