Is it possible to mix .cs (C#) and .fs (F#) files

2019-01-22 18:01发布

How to do it? Is it possible to call a function from one F# code into C# without using a separated dll file or project?

5条回答
forever°为你锁心
2楼-- · 2019-01-22 18:49

Not being able to mix C# and F# in the same project creates a problem; It leads to circular dependencies between the two projects. Conceptually there is only one project containing two languages, but because of the way visual studio manages projects languages cannot be mixed, leading to circular dependencies.

For now the only solution I see it to create a lot of interfaces in a third project and have one of the project refer to the interfaces project, instead of the real project. Is there a better way?

Kind Regards, Nick

查看更多
Explosion°爆炸
3楼-- · 2019-01-22 18:49

You can't compile F# source files (.fs) in a C# project, but you can add F# script files (.fsx) which you can use to reference and explore the C# project's assembly from F# interactive:

public static class Math
{
    public static double PowN(double d, int n)
    {
        var result = 1;
        for (int i = 0; i < n; i++) result *= d;
        return result;
    }
}

F# script file (.fsx):

#r "bin\debug\ClassLibrary1.dll"

Math.PowN(2.0,3)
查看更多
我想做一个坏孩纸
4楼-- · 2019-01-22 18:50

Compile your F# code, "decompile" with any tool (like reflector, ilspy) to C# code, include it in a project -> Profit!

查看更多
Explosion°爆炸
5楼-- · 2019-01-22 18:55

No. If you want to produce a single .exe you could use some of the f# static link options use the F# --full-help comandline switch of more details of these.

查看更多
狗以群分
6楼-- · 2019-01-22 18:57

You can't include two different languages in the same project, but you can merge them using ilmerge. To do this, put both projects in the same solution and reference the F# module as you would any dll. As part of your deployment script, run ilmerge to combine the exe file and dll file into a single exe file. See this Code Project article that details how to use ilmerge to create an exe.

查看更多
登录 后发表回答