使用 PInvoke 与 .NET 提供的函数

发布于 2024-08-29 01:02:07 字数 155 浏览 2 评论 0原文

从.NET 的版本到版本,.NET 中添加了更多与P/Invoke 相同的功能。

现在我脑子里有两个问题。

1)就速度而言,哪一个比另一个更好,通常我使用.Net函数,但在紧密循环中我真的不知道哪一个会更快。

2)有没有网站可以提供对应的列表?

From version to version of .NET the more function that's equal to P/Invoke is added to .NET

Now there are 2 questions in my mind.

1) Which one is prefer over the other in term of speed, normally I use .Net function but in tight loop I don't really know which one is going to be faster.

2) Is there any website that provide the list of counter-parts?

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

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

发布评论

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

评论(1

扭转时空 2024-09-05 01:02:07

1) 如果有 .NET 函数,您当然应该使用它 - 除非您有充分的理由不这样做。

2) 是的,有一个页面将 Win32 API 函数映射到 .NET 方法,尽管它很旧 - 它适用于 .NET 1.1。请参阅 http://msdn.microsoft.com/en-us/library/aa302340 .aspx

编辑:据我所知,没有更新的列表,但您可以尝试的一个技巧是打开 .NET 框架程序集(如 mscorlib、System 等) Reflector 并搜索 Win32 方法名称。如果程序集在内部调用它,您应该能够通过这种方式找到它,然后找到它的引用位置,以跟踪它到您可以调用的公共方法(如果有)。如果没有,至少您可以复制 P/Invoke 签名,而不必弄清楚它。

1) If there is a .NET function you should, of course, use it - unless you have a really good reason not to.

2) Yes, there is a page that maps Win32 API functions to .NET methods, though it's quite old - it applies to .NET 1.1. See http://msdn.microsoft.com/en-us/library/aa302340.aspx

Edit: There is no newer list that I'm aware of, but one trick you could try is opening the .NET framework assemblies (like mscorlib, System, etc.) in Reflector and searching for the Win32 method name. If the assembly invokes it internally you should be able to find it this way and then find where it's referenced to trace it to a public method that you can call, if there is any. If there isn't, at least you can copy the P/Invoke signature without having to figure it out.

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