0
我想知道是否存在cil代碼列表,我認爲16 = false和17 = true,但不是100%當然,也認爲-1 = 0,但如果任何人有一個網站來幫助這將是偉大的。尋找cil的代碼列表,如16,17,18,19,22所做的那樣
16 = false
17 = true ?
我想知道是否存在cil代碼列表,我認爲16 = false和17 = true,但不是100%當然,也認爲-1 = 0,但如果任何人有一個網站來幫助這將是偉大的。尋找cil的代碼列表,如16,17,18,19,22所做的那樣
16 = false
17 = true ?
你可以找到所有操作碼的完整列表分區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
從有機磷農藥提16 =假,17 =真實的,我很確定他只是省略了0x,他的數字實際上是十六進制。 – thehennyy
是的,這個想法發生在我發佈後,我在更新的過程中,當你評論:) –
好吧,我在想我的時候,我說cil ..但cil網站幫助..謝謝 –