标签: f# f#-interactive
是否可以通过F#的交互式窗口添加对.NET库的引用?例如:
> open System.Xml.Linq;; open System.Xml.Linq;; ----------------^^^^ stdin(2,17): error FS0039: The namespace 'Linq' is not defined. >
答案 0 :(得分:10)
这似乎有效:
> #r "System.Xml.Linq" ;;