Need hotkey/button to comment out a block of code in Visual Studio 2008 Express - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T11:33:13Zhttp://stackoverflow.com/feeds/question/312626http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/312626/need-hotkey-button-to-comment-out-a-block-of-code-in-visual-studio-2008-express3Need hotkey/button to comment out a block of code in Visual Studio 2008 ExpressEdward Tanguay2008-11-23T15:35:30Z2008-11-23T20:05:06Z
<p>I'm coming from Eclipse, working in Visual Studio 2008 Express and just want to highlight code, right-click and comment it out.</p>
<ul>
<li>nothing in right-click</li>
<li>looking in Tools | Options, Toolbars, Commands, can't find a button for it...</li>
</ul>
<p>How do I activate this the comment/uncomment feature, I know Visual Studio 2003 had it.</p>
<p>HERE ARE THE ANSWERS, TURNS OUT IT DEPENDS WHAT YOU ARE USING:</p>
<p><strong>Visual Studio 2008 Full Version:</strong></p>
<pre><code>Comment ctrl-k, ctrl-c
uncomment ctrl-k, ctrl-u
</code></pre>
<p><strong>Visual Web Developer 2008 Express:</strong></p>
<pre><code>Comment ctrl-k, ctrl-c
uncomment ctrl-k, ctrl-u
</code></pre>
<p><strong>Visual C# 2008 Express:</strong></p>
<pre><code>Comment ctrl-e, ctrl-c
uncomment ctrl-e, ctrl-u
</code></pre>
http://stackoverflow.com/questions/312626/need-hotkey-button-to-comment-out-a-block-of-code-in-visual-studio-2008-express/312631#3126313Answer by Mauro for Need hotkey/button to comment out a block of code in Visual Studio 2008 ExpressMauro2008-11-23T15:39:50Z2008-11-23T15:39:50Z<p>the key combination </p>
<pre><code>Comment ctrl-k, ctrl-c
uncomment ctrl-k, ctrl-u
</code></pre>
<p>Thats VS 2008, not sure if the express editions have the same thing.</p>
http://stackoverflow.com/questions/312626/need-hotkey-button-to-comment-out-a-block-of-code-in-visual-studio-2008-express/312638#3126381Answer by MovEaxEsp for Need hotkey/button to comment out a block of code in Visual Studio 2008 ExpressMovEaxEsp2008-11-23T15:45:09Z2008-11-23T15:45:09Z<p>Mauro is right about the shortcuts, they're in Express as well. You can also get to the Comment/Uncomment block commands in the Edit->Advanced menu. You probably also have a toolbar icon to do this that looks like a couple of lines, with a few indented blue ones.</p>
http://stackoverflow.com/questions/312626/need-hotkey-button-to-comment-out-a-block-of-code-in-visual-studio-2008-express/312714#3127144Answer by Gishu for Need hotkey/button to comment out a block of code in Visual Studio 2008 ExpressGishu2008-11-23T16:57:01Z2008-11-23T16:57:01Z<p>Weird it's Ctrl+E, C (Comment) and Ctrl+E, U (Uncomment)</p>
<p><a href="http://picasaweb.google.com/lh/photo/jS75c4D1FfUA9kBy92nB5Q?authkey=-b3uGjHkX3g" rel="nofollow"><img src="http://lh4.ggpht.com/_nxgDpneh8yk/SSmK9owk_dI/AAAAAAAAAZA/CIOm5V9Jbyw/s800/Comment_in_EE.JPG" /></a></p>
<p>Normally It's Ctrl+K, C and Ctrl+K, U as Mauro says. Express Edition default (and only) keyboard mapping says otherwise.</p>
http://stackoverflow.com/questions/312626/need-hotkey-button-to-comment-out-a-block-of-code-in-visual-studio-2008-express/312885#3128851Answer by shoosh for Need hotkey/button to comment out a block of code in Visual Studio 2008 Expressshoosh2008-11-23T20:05:06Z2008-11-23T20:05:06Z<p>Visual Assist X also has better shortcuts for this:</p>
<blockquote>
<p><code>/</code> - comment the block with <code>//</code><br />
<code>*</code> - comment the block with <code>/* */</code></p>
</blockquote>
<p>I'm not sure if it Visual Assist works with The express edition though</p>