Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            DebugClient client = new DebugClient(IPAddress.Loopback);

            client.RegisterCommand(new BreakCommand());
            client.RegisterCommand(new RegisterCommand());
            client.RegisterCommand(new StepCommand());
            client.StartShell();
        }
Ejemplo n.º 2
0
 public abstract void Execute(string[] args, DebugClient client);