.net for object explorer

Does anyone know an object explorer control for .net winforms (or web forms)?
By "object explorer" I mean something like a visual object explorer that I can use in my own program.

I found these links on the net:
1. http://www.codeproject.com/KB/trace/oe.aspx - This is pretty old, and I don’t know if it is relevant today.
2.http: //www.pcreview.co.uk/forums/can-embed-vs-nets-object-explorer-program-t1342274.html - no one answers it.

+7
source share
4 answers
0
source

Sounds like you need a reflector. Have you checked ILSpy ? This is an open source browser. You can get the code and configure it as you wish.

0
source

It is very simple to program this yourself using routines in the System.Reflection namespace. It simply lists all types in the assembly and lists all methods, properties, variables in the type.

0
source

The one that uses Visual Studio is available in WinForms. It was called PropertyGrid.

http://msdn.microsoft.com/en-us/library/aa302326.aspx

You can add all kinds of attributes to your code so that it displays as you want.

0
source

All Articles