我有一个程序Process.Start()
另一个程序,它在N秒后关闭它。
有时我选择将调试器附加到已启动的程序。在这些情况下,我不希望在N秒后关闭进程。
我希望主程序能够检测是否附加了调试器,因此它可以选择不关闭它。
澄清:我不打算检测调试器是否附加到我的进程,我正在寻找检测调试器是否附加到进程I衍生
答案 0 :(得分:165)
if(System.Diagnostics.Debugger.IsAttached)
{
// ...
}
答案 1 :(得分:20)
您需要P/Invoke向下CheckRemoteDebuggerPresent。这需要一个目标进程句柄,您可以从Process.Handle获取。
答案 2 :(得分:12)
Process process = ...;
bool isDebuggerAttached;
if (!CheckRemoteDebuggerPresent(process.Handle, out isDebuggerAttached)
{
// handle failure (throw / return / ...)
}
else
{
// use isDebuggerAttached
}
/// <summary>Checks whether a process is being debugged.</summary>
/// <remarks>
/// The "remote" in CheckRemoteDebuggerPresent does not imply that the debugger
/// necessarily resides on a different computer; instead, it indicates that the
/// debugger resides in a separate and parallel process.
/// <para/>
/// Use the IsDebuggerPresent function to detect whether the calling process
/// is running under the debugger.
/// </remarks>
[DllImport("Kernel32.dll", SetLastError=true, ExactSpelling=true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool CheckRemoteDebuggerPresent(
SafeHandle hProcess,
[MarshalAs(UnmanagedType.Bool)] ref bool isDebuggerPresent);
Process process = ...;
bool isDebuggerAttached = Dte.Debugger.DebuggedProcesses.Any(
debuggee => debuggee.ProcessID == process.Id);
$sth->execute();
答案 3 :(得分:5)
我知道这已经过时了,但我遇到了同样的问题,并且意识到如果你有一个指向EnvDTE的指针,你可以检查这个过程是否在Dte.Debugger.DebuggedProcesses中:
foreach (EnvDTE.Process p in Dte.Debugger.DebuggedProcesses) {
if (p.ProcessID == spawnedProcess.Id) {
// stuff
}
}
CheckRemoteDebuggerPresent调用仅检查进程是否在本机调试,我相信 - 它不适用于检测托管调试。
答案 4 :(得分:0)
我的解决方案是Debugger.IsAttached,如下所述:http://www.fmsinc.com/free/NewTips/NET/NETtip32.asp