如何确定进程是否是在 C# 中管理的?

发布于 2024-10-17 12:43:21 字数 471 浏览 3 评论 0原文

一些搜索会返回以下结果: 哪些进程正在运行托管代码以及哪个版本?

但是我想知道是否有“更好”的方法,然后简单地迭代加载的模块?查找字符串“mscorwks.dll”似乎有点奇怪。阅读 MSDN 上的 进程类 似乎并没有指出一个明显的问题解决方案。

的假设

  1. .NET 4.0
  2. 我手头有一个“流程”

谢谢

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

  1. .NET 4.0
  2. I have a "Process" in hand

Thank you

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

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

发布评论

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

评论(2

真心难拥有 2024-10-24 12:43:21

对于未来的 Google 员工:我最终使用了此处发布的建议答案 如何检查程序是否正在使用 .NET?(感谢 0xA3!)

Process mProcess = //Get Your Process Here
foreach (ProcessModule pm in mProcess.Modules)
{
    if (pm.ModuleName.StartsWith("mscor", StringComparison.InvariantCultureIgnoreCase))
    {
        return true;
    }
}

顺便说一句,我在原始帖子中提到的寻找“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!)

Process mProcess = //Get Your Process Here
foreach (ProcessModule pm in mProcess.Modules)
{
    if (pm.ModuleName.StartsWith("mscor", StringComparison.InvariantCultureIgnoreCase))
    {
        return true;
    }
}

As an aside looking for "mscorwks.dll" as mentioned in my original post does not work for .NET 4.0.

残花月 2024-10-24 12:43:21

在代码中,获取执行进程的完整路径。
尝试在进程上使用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 :)

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