本文介绍了如何使用代码调试进程?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Hi Team,
我有这样的代码
Hi Team,
I have code like this
ProcessStartInfo proc = new ProcessStartInfo( "D:\MyAPP\Test.exe", Arguments );
proc.CreateNoWindow = true;
proc.UseShellExecute = false;
proc.WorkingDirectory = Path.GetDirectoryName( D:\MyAPP\Test.exe );
Process MyProcess = Process.Start( proc );
我想调试过程(测试。 exe)我的调试器来到那个代码部分。
请帮帮我。
谢谢
Dileep
I want to debug the process (Test.exe) when my debugger comes to that code part.
Please help me.
Thanks
Dileep
推荐答案
这篇关于如何使用代码调试进程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!