代码之家  ›  专栏  ›  技术社区  ›  Bullines

通过F#的交互窗口添加引用

  •  8
  • Bullines  · 技术社区  · 15 年前

    > open System.Xml.Linq;;
    
      open System.Xml.Linq;;
      ----------------^^^^
    
    stdin(2,17): error FS0039: The namespace 'Linq' is not defined.
    > 
    
    1 回复  |  直到 13 年前
        1
  •  10
  •   Daniel Pratt    15 年前

    这似乎有效:

    > #r "System.Xml.Linq" ;;
    
    推荐文章