526dbbdf23e3205ee5dacdfad429a2f45aa0376a
[mono.git] / README
1
2 This is Mono.
3
4 A directory roadmap:
5
6         doc/
7                 Contains documentation and the web site contents.
8
9         mono/
10                 The core of the executable.
11
12                 metadata/
13                         The library to deal with executables and libraries for
14                         .NET
15
16                 dis/
17                         CIL executable Disassembler
18
19                 cli/
20                         Common code for the JIT and the interpreter.
21
22                 cil/
23                         Common Intermediate Representation, XML
24                         definition of the CIL bytecodes.
25
26                 interp/
27                         Interpreter for CLI executables.
28
29 * Using Mono
30
31         Once you have installed the software, you can run a few programs:
32
33                 monodis program.exe
34
35         That will dump the bytecodes for program.exe.  Monodis support
36         a number of options that dumps various metadata tables
37         (chapter 23 of the Partition III).
38
39         You can try the interpreter like this:
40
41                 mono-int program.exe
42
43
44
45
46
47
48
49
50
51
52