Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a dll that contains a dot net assembly - common intermediate language. The problem is that it's lacking documentation and I need to figure out the api like available classes, properties and methods, correct parameters to pass etc.

Whats the best way to do this. I need some sort of viewer/inspector but I couldn't find any.

Thanks.

share|improve this question

1 Answer

up vote 13 down vote accepted

Try reflector. http://www.red-gate.com/products/reflector/

Its free :-)

Edit:
As of February 2011, its no longer free ...:(
There are alternatives like ilspy or JetBrains dotPeek.

share|improve this answer
Also note that it lets you look at the IL code AND translations to other Languages. – Tigraine Nov 27 '08 at 10:47
And don't forget to look for plugins. You can make it do practically anything you want except make coffee. – Mendelt Nov 28 '08 at 8:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.