README 903 B

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