user160677
user160677

Reputation: 4303

ASP.NET Assembly -IL to Source

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

Upvotes: 0

Views: 173

Answers (4)

Muhammad Akhtar
Muhammad Akhtar

Reputation: 52241

yes, you can using ILDASM.exe

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

Upvotes: 1

Andrew Hare
Andrew Hare

Reputation: 351566

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.

Upvotes: 4

rahul
rahul

Reputation: 187090

Use

MSIL Disassembler (Ildasm.exe)

Upvotes: 1

sipsorcery
sipsorcery

Reputation: 30714

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

Upvotes: 1

Related Questions