Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            using (var debugger = IDebugger.Create())
            {
                var proc = debugger.StartProcess(@"c:\Users\Péter Lenkefi\source\repos\DebuggerTest\DebuggerTest\foo.exe", null);

                Thread.Sleep(2000);

                for (int i = 0; i < 20; ++i)
                {
                    //Console.WriteLine("step");
                    debugger.StepProcess(proc);
                    Thread.Sleep(500);
                }
                debugger.ContinueProcess(proc);

                while (true)
                {
                }
            }
        }