2

コード内の単語の上にカーソルを移動すると、vb がコード内の同じ単語をすべて強調表示することに気付きました。すべての単語を同時に編集するショートカットはありますか?

4

1 に答える 1

3

リファクタリングツールが必要です。
Visual Studio には非常にシンプルなリファクタリング ツールが付属しており、リファクタリング ツールバーまたはリファクタリング コンテキスト メニューから使用できます。
あなたが探している機能は名前の変更と呼ばれ、そのショートカットはCTR+R, CTRL+R
(CtrlキーとRキーを2回押すことを意味します)

他の代替手段 (無料ではない) は、ReSharperまたはCodeRush です。

リファクタリング プロセスの適切な説明は、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 に答える