VS debugging and watching a variable for changes

后端 未结 3 2356
太阳男子
太阳男子 2021-02-19 23:03

I have a property inside a class that is getting changed by something. The only place I change the value of this code is a line that looks like this:

pushpin.Pos         


        
3条回答
  •  灰色年华
    2021-02-19 23:08

    You need to set a data breakpoint. A data breakpoint will cause the debugger to break when a certain memory address has changed.

    More detailed description and instructions how to set a data breakpoint.

提交回复
热议问题