Visual Studio里常见的快捷键

1. 编译调试时常用快捷键

    Ctrl+Shift+B: compile

    F5: start debugging/run to next breakpoint

    F11: step into

    F10: step over

    Shift+F11: step out

    F9: toggle breakpoint
 

2. 其他常用快捷键

    Ctrl+Space: content assistant

    Ctrl+J: 编辑代码时,列出当前类的成员以完成语句。

    F3: 查找上次搜索文本的下一个匹配项。上一个是Shift+F3

    Ctrl+F3: 在文档中查找当前选定文本的下一个匹配项.上一个是Shift+Ctrl+F3

Ctrl+K+F: Code format

?: 将选定行变成注释

?: 将选定的注释行变成代码

     F12: Go to definition

3. 定制快捷键

“如何:使用快捷组合键”

http://msdn2.microsoft.com/zh-cn/library/5zwses53.aspx
原文地址:https://www.cnblogs.com/yuquanlaobo/p/621621.html