如何在 C# 中获取特定运算符的函数?

发布于 2024-08-25 13:44:30 字数 315 浏览 5 评论 0原文

是否可以获得C#运算符背后的函数? 例如,在 F# 中,您可以执行

let add = (+);;

val add : (int -> int -> int)

Is it possible in C# to do this:

Func<int, int, int> add = (+);

or

Func<int, int, int> add = Int32.(+)

?

Is it possible to obtain the function behind a C# operator?
For example in F# you can do

let add = (+);;

val add : (int -> int -> int)

Is it possible in c# to do something like this:

Func<int, int, int> add = (+);

or

Func<int, int, int> add = Int32.(+)

?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最偏执的依靠 2024-09-01 13:44:30

您可以使用 lambda 表达式:

Func<int, int, int> func = (val1, val2) => val1 + val2;

You can use lambda expressions:

Func<int, int, int> func = (val1, val2) => val1 + val2;
满栀 2024-09-01 13:44:30

这是一种完成您想要的操作的间接方法:

Func<int, int, int> add = (int a, int b) => a + b;

反映后,可以看到 F# 也不直接访问 Int32.operator+ (这可能是不可能的),而是执行类似于上面的 C# 代码的操作只是使用内部委托类型(Microsoft.FSharp.Core.FastFunc)。

Here's an indirect way to do what you want:

Func<int, int, int> add = (int a, int b) => a + b;

When reflected, it can be seen that F# doesn't access the Int32.operator+ directly either (that's probably impossible), but does something like the C# code above just using an internal delegate type instead (Microsoft.FSharp.Core.FastFunc).

十二 2024-09-01 13:44:30

要添加到其他答案,int 的添加是由 CIL add 指令完成的,而不是方法调用,因此没有任何意义可以获取“实际的MethodInfo”。

To add to the other answers, addition of ints is done by the CIL add instruction, rather than a method call, so there isn't any sense in which it would be possible to acquire 'the actual MethodInfo'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文