如何判断.NET编译的代码是否使用p/invoke?
判断 .NET 编译代码是否使用 p/invoke 的最简单方法是什么?
What is the easiest way to tell if .NET compiled code is using p/invoke?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用反射并查找具有 [DllImport] 属性的任何方法。
Use reflection and look for any methods with the [DllImport] attribute.
我非常确定 Mono 迁移分析器 (MoMA) 可以做到这一点。
I am quite sure the Mono migration analyzer (MoMA) can do this.
如果代码没有被混淆,请尝试使用 Reflector 来查看代码中发生的情况.dll。
Try using Reflector if the code isn't obfuscated to view what's going on in the .dll.