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