What is visual studio debugger
visual studio has an Integrated debugger, makes it easy to debug programs
What does VS debugger supports
Break points,
Conditional breakpoints,
Stepping,
Stack trace,
Variable display,
Variable watch.
Breakpoints
Breakpoint Types
function breakpoint
- stops when a function is called
data breakpoint
- Allows you to set the address of a variable and a number of bytes after it
- Triggered when that memory is changed.