Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果在 Visual Studio 2012 中进行了评论,有没有办法使用一个键盘快捷键(例如 Ctrl + /)来评论或取消评论,就像在 SublimeText 或 PhpStorm 中一样?
您可以使用Ctrl+ K, Ctrl+C来评论选定的代码行,使用Ctrl+ K, Ctrl+U来取消注释代码行。但请记住,这会将注释符号 ( //) 添加到所有代码行。/* .. */据我所知, VS 2012中没有针对块注释 ( ) 的特定快捷方式。
//
/* .. */