README 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. * Using Mono
  7. Once you have installed the software, you can run a few programs:
  8. * runtime engine
  9. mono program.exe
  10. or
  11. mint program.exe
  12. * C# compiler
  13. mcs program.cs
  14. * CIL Disassembler
  15. monodis program.exe
  16. See the man pages for mono(1), mint(1), monodis(1) and mcs(2)
  17. for further details.
  18. * A directory roadmap:
  19. doc/
  20. Contains documentation and the web site contents.
  21. mono/
  22. The core of the Mono Runtime.
  23. metadata/
  24. The object system and metadata reader.
  25. jit/
  26. The Just in Time Compiler.
  27. dis/
  28. CIL executable Disassembler
  29. cli/
  30. Common code for the JIT and the interpreter.
  31. io-layer/
  32. The I/O layer and system abstraction for
  33. emulating the .NET IO model.
  34. cil/
  35. Common Intermediate Representation, XML
  36. definition of the CIL bytecodes.
  37. interp/
  38. Interpreter for CLI executables.
  39. arch/
  40. Architecture specific portions.