views:

140

answers:

3

Hi,

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

Any help would be greatly appreciated.

+11  A: 

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

Chinjoo
A: 

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: http://stackoverflow.com/questions/205059/is-there-a-c-decompiler

gnucom
+1  A: 

Use reflector tool for .net

vIDHU