views:

538

answers:

2

I'm working on mapping two objects in .NET. I'd like to be able to print the properties list from the Object Browser window so I can look at the information simultaneously. Is there a way to print that information via Visual Studio 2008?

Failing that, does anyone know of a good method to print a general definition of a class (property names, method names)?

A: 

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.Reflection to get all the properties and methods, and work from there.

Martinho Fernandes
A: 

You could just take a screenshot of the Object Browser and print it. Simple but effective.

Albic