Paul wrote:
> I want
> to debug parts of the base and all of my application code. But there
> are parts of the base code that I just want to skip and not see (EVER)
> when debugging. Is there some feature like #DEBUG that does this?
If you can limit your requirement to entire procedures, you can achieve this
by applying the <DebuggerStepThrough()> attribute to the procedures in
question. Any procedures set up with this attribute will be effectively
ignored by the debugger in the IDE (although they will of course be called
and executed as normal); "step into" will treat them as if they were
language statements and will step over them, breakpoints set inside them
will be ignored, etc.
If you want to be able to do this for specific blocks of code within a
larger procedure, I'm not aware of any way to achieve this.
HTH,
--
(O)enone
|