-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.il
63 lines (52 loc) · 1.05 KB
/
test.il
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
54
55
56
57
58
59
60
61
62
.assembly extern mscorlib
{
.publickeytoken = (B7 7A 5C 56 19 34 E0 89)
.ver 4:0:0:0
}
.assembly quiscript
{
.ver 1:0:0:0
}
.module main.exe
.imagebase 0x00400000
.file alignment 0x00000200
.stackreserve 0x00100000
.subsystem 0x0003
.corflags 0x00020003
.class public auto ansi abstract sealed beforefieldinit IO
extends [mscorlib]System.Object
{
.method public hidebysig static void Print(string text) cil managed
{
.maxstack 8
ldarg.0
call void [mscorlib]System.Console::WriteLine(string)
ret
}
}
.class public auto ansi beforefieldinit Program
extends [mscorlib]System.Object
{
.method public hidebysig void Hello()
{
.locals init (
)
ldstr "helo"
call void IO::Print(string)
ret
}
.method public static hidebysig void Main()
{
.entrypoint
.locals init (
[0] string b
)
ldstr "random string"
stloc.0
ldstr "b = "
ldloc.0
call string [mscorlib]System.String::Concat(string, string)
call void IO::Print(string)
ret
}
}