How to simulate a Delphi breakpoint in code?
问题 I am pretty sure I have seen this before, but I haven't found out / remembered how to do it. I want to have a line of code that when executed from the Delphi debugger I want the debugger to pop-up like there was a break point on that line. Something like: FooBar := Foo(Bar); SimulateBreakPoint; // Cause break point to occur in Delphi IDE if attached WriteLn('Value: ' + FooBar); Hopefully that makes sense. I know I could use an exception, but that would be a lot more overhead then I want. It