7

This may be a dumb question, but is there a compiler for IL code, similar to that shown by Reflector in IL mode?

RCIX
  • 38,647
  • 50
  • 150
  • 207

2 Answers2

17

ilasm, it comes with the .NET Framework.

The complete reference is here.

CesarGon
  • 15,099
  • 6
  • 57
  • 85
0

yes ilasm, it comes with the .NET Framework. but you need the SDK DeComplier

I'm looking for it my self

lexdean
  • 151
  • 1
  • 2
  • 13
  • For .Net 2.0 you need to download and install the "Microsoft .Net Framework 2.0 SDK". Then ildasm.exe is typically in C:\Program Files\Microsoft.NET\SDK\v2.0\Bin. – RenniePet Apr 23 '11 at 00:01