https://github.com/0x6773/ilcoder
Get IL Code of C# Code. Uses Mono.Cecil. (User Friendly)(CLI only)
https://github.com/0x6773/ilcoder
Last synced: 4 months ago
JSON representation
Get IL Code of C# Code. Uses Mono.Cecil. (User Friendly)(CLI only)
- Host: GitHub
- URL: https://github.com/0x6773/ilcoder
- Owner: 0x6773
- License: mit
- Created: 2015-05-20T15:26:19.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-08T05:39:44.000Z (almost 10 years ago)
- Last Synced: 2025-01-03T18:17:35.963Z (5 months ago)
- Language: C#
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ilCoder
## About
An easy way to see IL Code of your C# Code.
To do this it uses Mono.Cecil library.## How to use?
Build the project using MonoDevelop or build in Terminal using ```xbuild```
Nice Method to Use :
```
./ilCoder.exe -f path/to/exe/or/dll/file -c class/name -m method/name -o name/of/output/file
#
# IL Code
#
```
* You will get IL code only if you input data correct.Output File is optional, if not given will produce output on screen.
Good Method to Use :
```
./ilCoder.exe
Enter path to Binary File : path/to/exe/or/dll/file
Enter the name of class : class/name
Enter the name of method : method/name
Enter the path to output file (leaving it will give output on screen) : name/of/output/file
```##[```Report Issues```](https://github.com/mafiya69/ilCoder/issues)