Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/README
blob: 140c7ca4ca6f3da13a6928d05ec34867bc08ae91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

This is Mono.

A directory roadmap:

	doc/
		Contains documentation and the web site contents.

	mono/
		The core of the executable.

		metadata/
			The library to deal with executables and libraries for
			.NET

		dis/
			CIL executable Disassembler

		cli/
			Common code for the JIT and the interpreter.

		cil/
			Common Intermediate Representation, XML
			definition of the CIL bytecodes.

		interp/
			Interpreter for CLI executables.

* Using Mono

	Once you have installed the software, you can run a few programs:

		monodis program.exe

	That will dump the bytecodes for program.exe.  Monodis support
	a number of options that dumps various metadata tables
	(chapter 23 of the Partition III).

	You can try the interpreter like this:

		mono-int program.exe