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)?
相关问题
- Monodevelop: `Waiting for debugger`
- Unity3D - Build Failed because of “[Unity] ERROR:
- Mono Winforms MacOSX replacement for WebBrowser
- Problems while creating a Linux-executable file fr
- GetAllNetworkInterfaces() throws exception
相关文章
- Visual Studio Code, MAC OS X, OmniSharp server is
- Bundling the Windows Mono runtime with an applicat
- How to use native C++ libraries in Mono for Androi
- Install mod_mono on Mac OSX
- Modify Compiled .Net Exe
- Which Linux distribution is best for developing a
- AppDomain support is dead in UnityEngine, any way
- Serialize/deserialize between MONO-client and ASP.
There is a new project called ILSPY that is trying to build an open source version of reflector: http://wiki.sharpdevelop.net/ILSpy.ashx
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.
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.
Mono Cecil. Red-Gate Reflector is totaly based on it. Se this RedGate forum post for more information.
reflector 6.0 dose not support Mono,only 5.1.7supports mono.
mono reflector.exe /compat
:)
As I was looking for a Mono decompiler, I found this page and tested the answers :
Finally I found it was possible to decompile assemblies directly in MonoDevelop