Visual Studio: Object Highlighting

Arokh

Centurion
Joined
Apr 11, 2006
Messages
124
Hi,
Recently I wrote a Java application with NetBeans.

It has one feature I would like to have in VS08:
If an object is selected, it highligted all recurring instances of that object.
For example:
Visual Basic:
Dim X as Integer
X = 10
If I select the 'X' in the first line the second 'X' in the next line is also highlighted.

I've searched a bit for Add-ins but I couldn't find one which features this.
Does anybody know of such an Add-in?
 
I highly doubt it exists. I believe you can right-click an identifier and select "Find all references" which will bring up all instances of that identifier in the project.
 
Back
Top