Visual Studio 2013不会导入Linq命名空间

时间:2015-02-12 08:32:14

标签: xml linq f#

我正在尝试在F#中使用XDocument类并导入命名空间。

  

打开System.Xml.Linq

但是编译器抱怨说,命名空间linq没有定义。 enter image description here

还添加了程序集System.Xml.Linq。

enter image description here

我还将库加载到交互式窗口中:

#r "System.Xml.Linq" ;;

我错了什么?

2 个答案:

答案 0 :(得分:0)

根据此MSDN entry,可能还需要程序集“System.Xml.XDocument.dll”。

答案 1 :(得分:0)

放入字符串

#r "System.Xml.Linq"

在F#脚本中打开语句之前