Quickly Search For An Exact Match in .NET Reflector
I love Lutz Roeder’s .NET Reflector. It’s one of those tools that makes me enjoy programming with .NET much like ReSharper does.
Whenever you’re searching for a type, a property or a string, you’ll get back a list of results containing the keystrokes you type. If you’re looking for an exact match for your search, you’d normally take your mouse and click on the Exact Match button (the last button from the search bar). I don’t like to swap my hand from the keyboard to the mouse for these kinds of operations.
Well, there’s a quicker way to search for an exact match in Reflector without having to click the Exact Match button. Just enclose your search query inside a pair of double quotes as the following screenshots demonstrate:
Searching for ‘Thread’ without the double quotes will return a huge list of types that contain the word “thread” in their name or namespace (see Figure 1).
Figure 1. Searching for ‘Thread’ without double quotes

Searching for ‘Thread’ with double quotes will perform an exact match (see Figure 2).
Figure 2. Searching for ‘Thread’ with double quotes

Similar posts you might be interested in reading:
- Go to your project’s output directory directly by using Windows Explorer as an External Tool (Visual Studio)
- Opening a New Tab in Firefox with the Logitech MX and VX Revolution Series Mouse
- C# Search: The .NET developer search engine
- How to retrieve your ISP credentials from a DLink DIR-615 router (or any other router for that matter)
- Rediscover the Web with these 20 Firefox Extensions
- Reflector vs MSDN documentation
- My Visual Studio 2008/Resharper Theme
Leave a comment