2

I have a DLL of the Silverlight 4 Datagrid control. How can I see the source code?

Any help would be greatly appreciated.

AnthonyWJones
  • 187,081
  • 35
  • 232
  • 306
happysmile
  • 7,537
  • 36
  • 105
  • 181

3 Answers3

12

You can use Reflector tool which is a Red Gate Product. Check out: http://www.red-gate.com/products/reflector/

Chinjoo
  • 2,697
  • 6
  • 28
  • 45
1

Use reflector tool for .net

Vidhu
  • 185
  • 1
  • 2
  • 14
0

You mean reverse compiling code? You'll have to be mindful of the law when doing all types of decompiling, but tools like Ada PRO will help you do that.

Keep in mind when you decompile code, you're going to get assembly code that you'll have to further decompile (sometimes by hand) into something like C or C++.

Good recommendation here: Is there a C++ decompiler?

Community
  • 1
  • 1
sholsapp
  • 15,542
  • 10
  • 50
  • 67