PERWAPI.IntInstr.IntInstr C# (CSharp) Méthode

IntInstr() public méthode

public IntInstr ( IntOp inst, int num ) : System
inst IntOp
num int
Résultat System
        public IntInstr(IntOp inst, int num)
            : base((uint)inst)
        {
            byteNum = inst == IntOp.ldc_i4_s;
            val = num;
            if (byteNum) size++;
            else size += 4;
        }