1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
.assembly TestCase {}
.class public auto ansi beforefieldinit TestCase
extends [mscorlib]System.Object
{
.method public hidebysig static void Main(int32 x, int32 y) cil managed
{
IL_0000: ldarg.0
IL_0001: ldarg.1
IL_0002: ble.s IL_000e
IL_0004: ldstr "x > y"
IL_0009: call void [mscorlib]System.Console::WriteLine(string)
IL_000e: ldarg.0
IL_000f: ldarg.1
IL_0010: bge.s IL_001c
IL_0012: ldstr "x < y"
IL_0017: call void [mscorlib]System.Console::WriteLine(string)
IL_001c: ret
}
}
|