I’m working on mapping two objects in .NET.
I would like to be able to print the items in the properties list from the Object Browser window in Visual Studio 2008. Is there a way to print that information out to the console?
If that is not possible, what is a good method to print a general definition of a class (property names, method names)?
To print the property list from the Object Browser you will probably need to write a VS add-in. For the second question: you can use
System.Reflectionto get all the properties and methods, and work from there.