Visual Studio / ** /注释快捷方式?

时间:2015-09-06 17:24:25

标签: c# c++ visual-studio keyboard-shortcuts commenting

我想知道如何通过快捷方式放置/**/条评论。我知道//评论的 Ctrl + K + C 快捷方式,但它会对整行进行评论。有时在调试时,我想做一些类似" ref string /* char[] */ lengthValue"在尝试的时候。

我希望能够通过快捷方式评论一条线的特定部分(而不是整条线),例如" string /* char[] */ lengthValue" i-e仅通过快捷方式注释掉喜欢的特定部分

我正在使用Visual Studio 2013

请帮忙

9 个答案:

答案 0 :(得分:32)

visual studio comment快捷键: 在Visual Studio中接受HTML,C#,Js,css等。

Ctrl + k + c

//a
//b                      
//c

撤消

ctrl+k+u 

    a
    b
    c

Ctrl + Shift + /

/* a
b
c*/

撤消

Ctrl + Shift + /

    a
    b
    c

答案 1 :(得分:13)

在Visual Studio 2017 RC中,只需选择所需的代码部分,然后按 Ctrl + K + C ,无需任何延期!

答案 2 :(得分:12)

我认为在Visual Studio中没有用于此目的的快捷键但是如果使用ReSharper,则可以使用 Ctrl + Shift + /

看看this可能有用。

答案 3 :(得分:4)

我做到了VS 2019

工具>选项>环境>键盘

输入Edit.ToggleBlockComment并添加一个快捷键。我选择了shft + ctrl + /

或者您可以将comment放在键盘部分的搜索框中,然后查看所有注释键绑定快捷方式选项。

答案 4 :(得分:1)

To comment a block of code (more than one line) in VS select code with ALT (alt+mouse or alt+shift+arrows), and then comment with Ctrl+K Ctrl+C. With one line code only you don't need ALT.

So it's basically the same as with // comments, only ALT needs to be pressed while selecting code for more lines than one.

答案 5 :(得分:0)

Shift + Option + A-通过转到“偏好设置”>“键盘快捷键”并搜索“注释”来找出答案

答案 6 :(得分:0)

您现在可以使用 Ctrl + Shift + A / *进行块注释* /

然后 Ctrl + ù //用于行注释

答案 7 :(得分:0)

在名为 Toggle Block Comments

的 Visual Studio Code 中

默认命令是 Shift + Alt + A

但是您可以在 Visual Studio Code 中自定义。我做到了ctrl + shift + /

希望能帮到你

答案 8 :(得分:-2)

使用reference indicated in the Visual Studio Code help Shift + Alt + A 用于块或代码行。

(VSC版本1.46.1 Windows 10)