views:

56

answers:

4

Ofcourse the IL is lanuage independent,can i get the source code back from IL (let the source code be any language C#,VB) ?

+1  A: 

Yes, to an extent, http://www.red-gate.com/products/reflector/.

sipwiz
+1  A: 

Use

MSIL Disassembler (Ildasm.exe)

rahul
+4  A: 

You could use .NET Reflector and Denis Bauer's Reflector.FileDisassembler:

The Reflector.FileDisassembler is a little add-in for the new version of Lutz Roeder's .NET Reflector that you can use to dump the decompiler output to files of any Reflector supported language (C#, VB.NET, Delphi). This is extremely useful if you are searching for a specific line of code as you can use VS.NET's "Find in Files" or want to convert a class from one language to another.

Andrew Hare
+1  A: 

yes, you can using ILDASM.exe

http://msdn.microsoft.com/en-us/library/f7dy01k1%28VS.80%29.aspx

Muhammad Akhtar