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

UIntInstr() public méthode

public UIntInstr ( IntOp inst, uint num ) : System
inst IntOp
num uint
Résultat System
        public UIntInstr(IntOp inst, uint num)
            : base((uint)inst)
        {
            byteNum = (inst < IntOp.ldc_i4_s) || (inst == IntOp.unaligned);
            val = num;
            if (byteNum) size++;
            else size += 2;
        }