PERWAPI.SwitchInstr.SwitchInstr C# (CSharp) Method

SwitchInstr() public method

public SwitchInstr ( CILLabel dsts ) : System
dsts CILLabel
return System
        public SwitchInstr(CILLabel[] dsts)
            : base(0x45)
        {
            cases = dsts;
            if (cases != null) numCases = (uint)cases.Length;
            size += 4 + (numCases * 4);
        }

Same methods

SwitchInstr::SwitchInstr ( int offsets ) : System