I am looking for some structure that allows decompiling a .NET assembly to get the source code.
I know that Reflector offers some kind of API for performing operations on assemblies, when I used it, it seems that I only return IL instructions and not the actual source code.
What I would like to do is install some kind of smart unhandled exception handler that will give me unsuccessful lines of code (for internal debugging purposes).
Is this possible using the Reflector API? What other tools are available for this purpose?
source share