Reputation: 61473
I have a DLL that I don't have source code to, but I want to use it in Silverlight.
Disregarding the dependency issue, what tool should I use to reflect into the DLL, get the source code, and convert it to a SL library?
Upvotes: 1
Views: 560
Reputation: 180868
Any reflector tool ought to suffice. Red Gate's Reflector has an add-in available that will reconstruct all of the original class files for you, assuming there is sufficient metadata available, and the DLL is not otherwise obfuscated.
Upvotes: 3