makerofthings7
makerofthings7

Reputation: 61473

Can I use reflection to convert a generic .NET DLL into one that works with Silverlight? What tool should I use?

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

Answers (1)

Robert Harvey
Robert Harvey

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

Related Questions