TUP.AsmResolver.ASM.InstructionCollection.IndexOf C# (CSharp) Method

IndexOf() public method

Gets the index of a given instruction.
public IndexOf ( x86Instruction instruction ) : int
instruction x86Instruction The instruction to get the index from.
return int
        public int IndexOf(x86Instruction instruction)
        {
            return List.IndexOf(instruction);
        }