- IL DASM
- Developer Command Prompt for VS ....
Open Developer Command Prompt for VS 2022 or another version and write ILDASM, the app will open automatically.
- CSC
- gacutil
- ilasm
- peverify
- CSC:
Creates the execute file from the cs file.
Uses like this:
CSC file-name.cs
- gacutil:
gets all versions and assembly information for one assembly name likeSystem
Uses like this:
gacutil /l System
- ilasm:
Creates the execute file from the il file.
Uses like this:
ilasm /exe file-name.il /output:output-file-name.exe
- peverify:
Debugs the exe files and verifies all classes and methods defined in the exe file.
Uses like this:
peverify file-name.exe
- Open ILDASM:
Open Developer Command Prompt for VS 2022 or another version and write ILDASM, the app will open automatically. - Drag exe file in the ILDASM.
- Go to File>Dump, use directory and file name, then save.