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)?

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

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

link|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
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
feedback

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.

link|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
feedback

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

mono reflector.exe /compat

:)

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

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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