Learn Visual Studio debugger productivity tips and tricks
Learn Visual Studio debugger productivity tips and tricks Read this topic to learn some productivity tips and tricks for the Visual Studio debugger. For more information on the basic features of the debugger, see Introduction to the debugger. This topic covers some areas that are not included in the feature tour. Data pinning tips If you frequently hover over a data tip while debugging, you can pin the data tip for a variable for quick access. Variables remain fixed after restart. To pin a data tip, hover over the pin icon and click. You can pin multiple variables. Continue debugging while editing code (C #, VB, C ++) In most languages supported by Visual Studio, you can edit code and continue debugging during a debugging session. To use this feature, while paused in the debugger, use your cursor to click the code, make edits, and press F5, F10, or F11 to continue debugging. Edit XAML code and continue debugging To modify XAML code during a debugging session, see Write ...
