Can I change how Visual Studio 2008 comments selection?

Posted by tJener on Stack Overflow See other posts from Stack Overflow or by tJener
Published on 2010-03-23T02:57:31Z Indexed on 2010/03/23 3:01 UTC
Read the original article Hit count: 150

Filed under:

I know that C-k C-c comments a selection, and currently it works as thus in C++:

AwesomeCode();
MoreAwesomeCode();

//AwesomeCode();
//MoreAwesomeCode();

However, I would like it to comment it as such:

// AwesomeCode();
// MoreAwesomeCode();

Is this possible?

© Stack Overflow or respective owner

Related posts about visual-studio-2008