如何确定进程是否是在 C# 中管理的?
一些搜索会返回以下结果: 哪些进程正在运行托管代码以及哪个版本?
但是我想知道是否有“更好”的方法,然后简单地迭代加载的模块?查找字符串“mscorwks.dll”似乎有点奇怪。阅读 MSDN 上的 进程类 似乎并没有指出一个明显的问题解决方案。
的假设
- .NET 4.0
- 我手头有一个“流程”
谢谢
A bit of searching returns this result: Which processes are running managed code and which version?
However I am wondering if there is a 'better' way then simply iterating though the loaded modules? It seems a little quirky to look for the string "mscorwks.dll". Reading though the Process Class on MSDN doesn't seem to point out an obvious solution.
Assumptions Made
- .NET 4.0
- I have a "Process" in hand
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于未来的 Google 员工:我最终使用了此处发布的建议答案 如何检查程序是否正在使用 .NET?(感谢 0xA3!)
顺便说一句,我在原始帖子中提到的寻找“mscorwks.dll”的方法不适用于 .NET 4.0。
For any future Googlers: I ended up using the suggested answer posted here How to check if a program is using .NET? (thanks 0xA3!)
As an aside looking for "mscorwks.dll" as mentioned in my original post does not work for .NET 4.0.
在代码中,获取执行进程的完整路径。
尝试在进程上使用
Assembly.Load
。如果它有效,那么它就是一个 .Net 程序集:)In code, get the full path of the executing process.
Try to use
Assembly.Load
on the process. If it works, it's a .Net assembly :)