XDocument中不存在XDocument.Load方法

时间:2016-12-30 14:10:00

标签: c# .net xml linq linq-to-xml

我坚持用Linq加载一个新的XML文档。那是我的代码:

using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Xml.Linq;

namespace Project
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            XDocument doc = new XDocument.Load("001.xml");
        }
    }
}

我得到的回报是'XDocument'类型上不存在'加载'方法。 这真的很奇怪,因为我认为“使用System.Xml.Linq”已经足够了。 我想使用Linq,因为我有一个复杂的XML,我认为使用Linq浏览所有元素更容易。我正在使用Visual Studio 2015社区。

3 个答案:

答案 0 :(得分:2)

Load是一种静态方法。您的代码在语法上不正确 - 您似乎正在尝试调用构造函数(使用new),但您错过了一些括号。

要调用静态方法,只需这样:

var doc = XDocument.Load("001.xml");

答案 1 :(得分:1)

Loadstatic的{​​{1}}方法。您的代码尝试实例化一个新的XDocument对象(XDocument)并调用new XDocument()作为其实例方法。

将您的代码更改为:

Load

答案 2 :(得分:1)

XDocument.Load是一个静态方法,只需这样使用它(没有新的):

XDocument doc = XDocument.Load("001.xml");

https://msdn.microsoft.com/en-us/library/bb343181(v=vs.110).aspx