给定F#高阶函数(在参数中取一个函数):
let ApplyOn2 (f:int->int) = f(2)
和C#函数
public static int Increment(int a) { return a++; }
如何以ApplyOn2
为参数调用Increment
(来自C#)?
请注意,ApplyOn2
导出为Microsoft.FSharp.Core.FSharpFunc<int,int>
,与Increment
的签名不符。
答案 0 :(得分:29)
要从等效的C#函数中获取FSharpFunc,请使用:
Func<int,int> cs_func = (i) => ++i;
var fsharp_func = Microsoft.FSharp.Core.FSharpFunc<int,int>.FromConverter(
new Converter<int,int>(cs_func));
要从等效的FSharpFunc获取C#函数,请使用
var cs_func = Microsoft.FSharp.Core.FSharpFunc<int,int>.ToConverter(fsharp_func);
int i = cs_func(2);
因此,在这种特殊情况下,您的代码可能如下所示:
Func<int, int> cs_func = (int i) => ++i;
int result = ApplyOn22(Microsoft.FSharp.Core.FSharpFunc<int, int>.FromConverter(
new Converter<int, int>(cs_func)));
答案 1 :(得分:17)
如果您想提供更友好的互操作体验,请考虑直接在F#中使用System.Func委托类型:
let ApplyOn2 (f : System.Func<int, int>) = f.Invoke(2)
您可以在C#中轻松调用F#函数,如下所示:
MyFSharpModule.ApplyOn2(Increment); // 3
然而,您已经编写了增量功能的问题。您需要增量运算符的前缀形式,以便函数返回正确的结果:
public static int Increment(int a) { return ++a; }
答案 2 :(得分:-3)
只需创建对程序集的引用:
#r @"Path\To\Your\Library.dll"
let ApplyOn2 (f:int->int) = f(2)
ApplyOn2 Library.Class.Increment