2016-06-27 56 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網站幫助..謝謝 –