README 770 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. This is Mono.
  2. A directory roadmap:
  3. doc/
  4. Contains documentation and the web site contents.
  5. mono/
  6. The core of the executable.
  7. metadata/
  8. The library to deal with executables and libraries for
  9. .NET
  10. dis/
  11. CIL executable Disassembler
  12. cli/
  13. Common code for the JIT and the interpreter.
  14. cil/
  15. Common Intermediate Representation, XML
  16. definition of the CIL bytecodes.
  17. interp/
  18. Interpreter for CLI executables.
  19. * Using Mono
  20. Once you have installed the software, you can run a few programs:
  21. monodis program.exe
  22. That will dump the bytecodes for program.exe. Monodis support
  23. a number of options that dumps various metadata tables
  24. (chapter 23 of the Partition III).
  25. You can try the interpreter like this:
  26. mono-int program.exe