Skip to content

AILC-programmer/IL-HelloWorld

Repository files navigation

Hello world with IL code

Tools:

  • IL DASM
  • Developer Command Prompt for VS ....

How can I open IL DASM?

Open Developer Command Prompt for VS 2022 or another version and write ILDASM, the app will open automatically.

CMD's commands We Used in this project

  1. CSC
  2. gacutil
  3. ilasm
  4. peverify

How should we use those commands?

  • 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 like System
    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

How should we get the IL file from the exe file?

  1. Open ILDASM:
    Open Developer Command Prompt for VS 2022 or another version and write ILDASM, the app will open automatically.
  2. Drag exe file in the ILDASM.
  3. Go to File>Dump, use directory and file name, then save.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages