Reputation: 44085
How to display all class and its base classes members in Visual Studio while in the text editor? What I do is go into any method and type 'this.'. and look at what intellisense displays. Is there an easier way? I use Resharper.
Upvotes: 0
Views: 438
Reputation: 18573
You can use the Hierarchies tool window, which will show the type hierarchy of the currently selected type. You can select each node in the hierarchy and display a preview, which will optionally consist of either the members defined at that point in the hierarchy, or all inherited members.
Upvotes: 1