2

我注意到当我将光标移到我的代码中的一个单词上时,vb 会突出显示我的代码中所有相同的单词。有没有同时编辑所有单词的快捷方式?

4

1 回答 1

3

你需要一个重构工具。
Visual Studio 带有一个非常简单的重构工具,可从重构工具栏或重构上下文菜单中获得。
您正在寻找的功能称为重命名,其快捷方式是CTR+R, CTRL+R
(意味着按两次键 CTRL 和 R)

其他替代品(不是免费的)是ReSharperCodeRush

重构过程的一个很好的解释可以在Martin Fowler 的书 Refactoring中找到:

Refactoring is the process of changing a software system in such a way that it does not alter the external behavior of the code yet improves its internal structure. It is a disciplined way to clean up code that minimizes the chances of introducing bugs. In essence, when you refactor you are improving the design of the code after it has been written.

于 2012-04-23T09:01:17.400 回答