Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual C# Express 2010 Shortcut to comment a code block?

I am looking for the equivalent of VS2010's CtrlE CtrlC on Express edition

like image 256
Mehdi LAMRANI Avatar asked Jan 18 '12 12:01

Mehdi LAMRANI


People also ask

What is Visual C used for?

Microsoft Visual C++ is a integrated development environment (IDE) used to create Windows applications in the C, C++, and C++/CLI programming languages. It was originally a standalone product, but is now included as part of Microsoft Visual Studio.

Is Microsoft Visual C free?

A fully-featured, extensible, free IDE for creating modern applications for Android, iOS, Windows, as well as web applications and cloud services.

Is Visual C necessary?

We don't recommend that you delete any Visual C++ redistributable, because doing so could make multiple applications on your computer stop working. Given how little space they take up and how broadly they are used, it doesn't seem worth the hassle to mess with your current ecosystem of standard library files.

Is Visual Studio C or C++?

C/C++ support for Visual Studio Code is provided by a Microsoft C/C++ extension to enable cross-platform C and C++ development on Windows, Linux, and macOS.


2 Answers

Ctrl+K, Ctrl+C //comment
Ctrl+K, Ctrl+U //uncomment

Try this combinations.

like image 132
Chuck Norris Avatar answered Sep 19 '22 11:09

Chuck Norris


Don't have Express installed but I would assume you can customize it in Tools -> Options -> Keyboard, then search for Edit.CommentSelection (or Edit.UncommentSelection).

enter image description here

like image 22
Strillo Avatar answered Sep 19 '22 11:09

Strillo