nvsvictor
nvsvictor

Reputation: 31

How to *un*-alphabetize the Methods & Fields in Visual Studio (2010)

I use Java Eclipse and I like how I can toggle between Sorted/Unsorted view of the methods and fields. Unsorted makes it easier to navigate the Source code as-is.

However, Visual Studio 2010 doesn't allow unsorted view intutively in its Class View pane. Instead, it has other ways to sort:

Does anyone know how to put the Class View in unsorted view?

Upvotes: 2

Views: 266

Answers (1)

davisoa
davisoa

Reputation: 5439

You can use one of the new features of VSCommands to do something similar - display the methods / fields / properties as they appear in the code file with the File Structure window.

Hope this helps.

Upvotes: 2

Related Questions