以前因为工作的关系,接触过不少程序员同行,发现很多同学对所谓的小技巧tips感兴趣。本文就是一篇很有趣的文章,总结介绍了12个关于“宇宙第一IDE”—— Visual Studio的实用技巧。善加利用这些小技巧,能够在使用Visual Studio进行调试时更加简单方便。
下面是几个小例子,比如说调试代码时让代码自动运行到光标所在的代码行。
调试代码时显示线程
以及从16.5版开始,Visual Studio 2019可以将已编译的程序集的IL代码反编译为一些C#源代码以便于调试。
具体内容可以查阅原文。
全文分为以下几个部分:
Run to Cursor
Run through here with a mouse click
Set next statement to here
Data breakpoint: Break when value changes
Conditional breakpoint
Trace breakpoint
Track Objects that Are Out-Of-Scope
View values returned by functions
Reattach To Process
No-Side-Effect evaluation in Immediate Window and in the Watch Window
Show Threads in Source
Debug source code decompiled from IL code
原文标题:
12 Visual Studio Debugging Productivity Tips
https://blog.ndepend.com/12-visual-studio-debugging-productivity-tips/