So, here is a summary of what I learned after some research.
DPack for Visual Studio 2012 . It currently works in beta, but works great. Since this is a plugin, it will not run in Express Edition Visual Studio .
Ctrl + F : the standard dialog Ctrl + F was completely reinvented in Visual Studio 2012 and is a more built-in search that jumps in your document as you type. It is useful enough for finding characters, but it will also find any relevant text in the document, including links , string constants, comments, whatever. For this reason, this is probably not the best way to quickly jump to a character.
Ctrl + Comma This is also a new feature of VS2012, however it is not available in Visual Studio Express Edition . This allows you to quickly find the character in your decision. It works quite well, although for large projects this can be an overload of information.
Ctrl + semicolon . In Solution Explorer, you can now filter by file name using the keyboard shortcut Ctrl + ; . This makes finding files quick and easy, but will not search for characters in the current file. This is more like DPack Ctrl + U.
Search by class . In class view ( Ctrl + Shift + C ), you can also search for class names or characters in your complete solution. However, it doesn't seem to require a keyboard shortcut to use this search, and you cannot just search for the current file. In addition, you must enter your query and press "Enter" to display the results, and not just filter as you type.
Partitioning a class / method . Like previous versions of Visual Studio, code files have drop-down lists just below the file tabs that display the classes and methods in the current file. This is rather unsuitable for quickly switching to any method in the document, since you first need to select the class in which this symbol is defined, and then select the symbol itself. Also, there are no shortcuts for the keys that I could find, and there is no easy way to filter the items in the list by entering part of the character name.
Mike christensen
source share