Given this code:
virtual void Address(CString& s);
virtual CString Address();
Place your caret on the first line, to the left of the first 'v'. Now hold down the Alt and Shift keys, and then right-arrow seven times, then down arrow once. You should end up with the two 'virtual' words selected. Now press the '*' key, to comment out the selected text. I expected to see this:
/*virtual*/ void Address(CString& s);
/*virtual*/ CString Address();
... but instead I got this:
/*
virtual
virtual
*/
Which is not good...