Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/.net/21.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# can';找不到F#库的引用组件_C#_.net_Visual Studio_Visual Studio 2008_F# - Fatal编程技术网

C# can';找不到F#库的引用组件

C# can';找不到F#库的引用组件,c#,.net,visual-studio,visual-studio-2008,f#,C#,.net,Visual Studio,Visual Studio 2008,F#,我正在使用一个非常旧的C#/F#库进行一些工作,代码试图导入Microsoft.FSharp.Math.Types.BigInt,我从中收集的是FSharp.PowerPack.dll。尽管我手动浏览添加引用时,它仍然表示找不到引用。它位于FSharpPowerPack-4.0文件夹中,目标框架是.NETFramework3.5自F#的早期以来,biginteger类型已经有了一些变化。最简单的方法是像这样添加自己的文件 module Microsoft.FSharp.Math.Types ty

我正在使用一个非常旧的C#/F#库进行一些工作,代码试图导入Microsoft.FSharp.Math.Types.BigInt,我从中收集的是FSharp.PowerPack.dll。尽管我手动浏览添加引用时,它仍然表示找不到引用。它位于FSharpPowerPack-4.0文件夹中,目标框架是.NETFramework3.5

自F#的早期以来,biginteger类型已经有了一些变化。最简单的方法是像这样添加自己的文件

module Microsoft.FSharp.Math.Types
type BigInt = Microsoft.FSharp.Core.bigint
然后把它先编译好

这将为新位置创建类型别名