2016-06-27 34 views

回答

3

你可以找到所有操作码的完整列表分区III的ECMA-335,但至于具体的说明,您列出:

02 (0x02) = ldarg.0 
16 (0x10) = starg.s 
17 (0x11) = ldloc.s 
18 (0x12) = ldloca.s 
19 (0x13) = stloc.s 

0x16 = ldc.i4.0 // could be a 0 or false or '\0' ... the exact type depends on how it's used. 
0x17 = ldc.i4.1 // could be a 1 or true or '\u0001' ... again, the exact type depends on how it's used. 
0x18 = ldc.i4.2 
0x19 = ldc.i4.3 
+0

从有机磷农药提16 =假,17 =真实的,我很确定他只是省略了0x,他的数字实际上是十六进制。 – thehennyy

+0

是的,这个想法发生在我发布后,我在更新的过程中,当你评论:) –

+0

好吧,我在想我的时候,我说cil ..但cil网站帮助..谢谢 –