https://github.com/svenslaggare/ildisassembler
An IL disassembler written using the .NET reflection API.
https://github.com/svenslaggare/ildisassembler
c-sharp il-disassembler ildasm reflection
Last synced: about 1 month ago
JSON representation
An IL disassembler written using the .NET reflection API.
- Host: GitHub
- URL: https://github.com/svenslaggare/ildisassembler
- Owner: svenslaggare
- License: mit
- Created: 2014-08-27T17:51:33.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-28T19:02:23.000Z (over 10 years ago)
- Last Synced: 2025-04-16T03:56:16.582Z (about 2 months ago)
- Topics: c-sharp, il-disassembler, ildasm, reflection
- Language: C#
- Homepage:
- Size: 430 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ILDisassembler
==============An IL disassembler written using the .NET reflection API
which allows the library to be embedded in .NET applications.
The method body disassembler is based on [Mono.Reflection](https://github.com/jbevain/mono.reflection/).Difference from ildasm.exe
* Instead of raw data for custom attribute constructors, uses the "real" value.
* Generics are handled different, for example the generic argument position with "!" are omitted.Limitations
Because the library is written using reflection, some features available in *ildasm.exe*
is not available.
* Unmanaged code.
* Raw constructor data.