Why is Visual C++ lacking refactor functionality?

后端 未结 11 1307
慢半拍i
慢半拍i 2020-12-12 20:15

When programming in C++ in Visual Studio 2008, why is there no functionality like that seen in the refactor menu when using C#?

I use Rename constan

11条回答
  •  [愿得一人]
    2020-12-12 20:40

    Don't feel hard-done-by, it isn't available in VB.Net either :)

    C++ is a HARD language to parse compared with C# (VB too unless you've "Option Explicit" and "Option Strict" switched on, it's difficult to tell exactly what any line of code is doing out of a MUCH larger context).

    At a guess it could have something to do with the "difficulty" of providing it.

    P.S. I marked my answer as community wiki because I know it's not providing any useful information.

提交回复
热议问题