Change ctrl k+c to produce c style comment (/**/) instad of c++ style comments (//) in visual studio
- by Henrik Rune Jakobsen
How do i change the comment style used in visual studio from // to /*...*/ ?
I use the comment shortcut mostly for commenting out code temporarily.
It annoys me that if i select bool abc in the code below and press ctrl k+c
void func( bool abc ) {}
it produces
//void func( bool abc ) {}
instead of
void func( /*bool abc*/ ) {}
Regards
Henrik