shenhengbin
shenhengbin

Reputation: 4294

Search File Or Class quickly from the solution In VS?

If there are lots of projects in one solution and each of them has lots of .cs file. Also, there might be one more classes in one file.

So, what I want to ask is: How can I find a file or a class quickly?

I really don't like use the ctrl+F every time.

Is there any plugin like if I click the CTRL+SHIFT+R it will open a window of show a class list or a file list and I can input the keyword what I'd like to find.

Then, when I double click the result, the file will be opened for me.

Upvotes: 4

Views: 2691

Answers (2)

lysergic-acid
lysergic-acid

Reputation: 20050

You can try out the "Productivity Power Tools" extension for VS2010. It adds a new menu called "Solution Navigator", which has a search box with autosuggest, that enables searching your solution.

it has lots of other features and I highly recommend it.

Upvotes: 1

Chris Schmich
Chris Schmich

Reputation: 29524

In VS2010 at least, there is the Navigate To feature. It indexes file names, classes, and methods for quick searching. Hit Ctrl+, (comma) to bring up the dialog:

enter image description here

Also, if you don't mind paying (and getting additional features), there is Visual Assist X and ReSharper, both of which I believe support VS2008/VS2010 and have source navigation features.

Upvotes: 13

Related Questions