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
|
-
|
|
|
|
|
|
|
!
-
|
-
|
|
|
|
|
!
!
|
.assembly test{}
.method static void Main()
{
.entrypoint
call void Bot::talk()
ret
}
.class Bot
{
.method public static void talk()
{
ldstr "hello"
call void [mscorlib]System.Console::WriteLine( string )
ret
}
}
|
C#では・・・ :
1
2
3
4
5
6
7
8
9
10
11
12
|
-
|
!
-
|
-
|
!
!
|
void main()
{
Bot.talk();
}
class Bot
{
public static void talk()
{
System.Console.WriteLine( "hello" );
}
}
|
|
Last-modified: Mon, 27 Jul 2009 03:06:22 JST