Changes between Version 1 and Version 2 of Debugging With Visual Studio


Ignore:
Timestamp:
Aug 5, 2010 9:07:14 AM (14 years ago)
Author:
Adam Roben
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Debugging With Visual Studio

    v1 v2  
    1717}}}
    1818
     19Note that you usually won't be able to pass a variable name as the parameter to CFShow, as the Immediate window will get confused and think you're specifying a symbol in CoreFoundation.dll rather than whatever code you're debugging. It's usually easiest just to pass the address of the object directly as above.
     20
    1921= Debugging Multi-Process Applications =
    2022You can attach a single debugger to more than one process. To do this, launch or attach to the first process, then use `Tools > Attach to Process…` or `Ctrl+Alt+P` to attach to the second process. Your breakpoints will apply to both processes.