Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there an equivalent of .NET Reflector for Mono? Quick googling did not find anything... Or can I run Reflector on Mono (say, in Mac OS X)?

share|improve this question

6 Answers

up vote 2 down vote accepted

As I was looking for a Mono decompiler, I found this page and tested the answers :

  • Mono.Cecil works great but it's a library and I was looking for a GUI
  • ILSpy doesn't run under Mono (Linux) since it uses WPF. Same for .NET CodeReflect, .NET CodeReflect, JustDecompile and dotPeek.
  • Perhaps Reflector works, but I don't really want to pay to know

Finally I found it was possible to decompile assemblies directly in MonoDevelop

share|improve this answer
How did you achieve decompiling assemblies directly in MonoDevelop? I can't figure out how to do this. – Micah Delane Bolen Apr 18 at 7:45
1  
@Micah Delane Bolen, this surely deserves its own question, but I will be generous this time :) Add your dll file as a reference to your project. Then double-click on the reference and TADAM the awesome MonoDevelop will show you the decompiled code. – Nicolas Apr 18 at 21:01

Reflector works fine on Mono (at in older versions), provided you turn off the "Show PDB symbols" option.

Miguel de Icaza blogged about this at one point.

share|improve this answer
to my surprise, you're right, it does work on Mac OS X!!! Just do "mono reflector.exe" in terminal!!! – zvolkov Oct 14 '09 at 0:28

There is a new project called ILSPY that is trying to build an open source version of reflector: http://wiki.sharpdevelop.net/ILSpy.ashx

share|improve this answer
ILSPY works quite well, I have added it to the O2 Platform and am now using it every day (instead of reflector) – Dinis Cruz Mar 24 '11 at 13:21
1  
I tried IlSpy, but it tells me the same as Reflector ** (ILSpy.exe:10897): WARNING **: The following assembly referenced from ****/ilSpy/ILSpy.exe could not be loaded: Assembly: PresentationFramework (assemblyref_index=5) Version: 4.0.0.0 Public Key: 31bf3856ad364e35 The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly (****/ilSpy/). – Arne Oct 30 '11 at 21:47

reflector 6.0 dose not support Mono,only 5.1.7supports mono.

mono reflector.exe /compat

:)

share|improve this answer
Reflector 6.5 supports Mono – Justin Jul 27 '10 at 22:00

Have any one tried Mono Cecil ?

With Cecil, you can load existing managed assemblies, browse all the contained types, modify them on the fly and save back to the disk the modified assembly; potentially might even be more powerful than Reflector!

I am about to review it.

share|improve this answer

Mono Cecil. Red-Gate Reflector is totaly based on it. Se this RedGate forum post for more information.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.