Why rename is not available

I saw and used the rename function in Visual Studio 2010.

However, when editing the code in C ++ mode, I do not see the "Refactor" menu, and the CTRL + R command CTRL + R gives the following error message:

The key combination (Ctrl + R, Ctrl + R) is tied to the command (Rename ...), which is currently unavailable.

Eclipse seems to have gotten this right. Is there a rename function in VS 2010 for VC ++?

+6
visual-studio-2010 rename
source share
1 answer

Is there a rename function in VS 2010 for VC ++?

It is right. None of the refactoring functions work for C ++ projects (only C # and VB). If you need these things, you need to use a third-party plugin like Visual Assist .

+5
source share

All Articles