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

this() public method

Gets or sets the instruction at the specific index.
public this ( int Index ) : x86Instruction
Index int The index of the instruction to get or set.
return x86Instruction
        public x86Instruction this[int Index]
        {
            get
            {
                return (x86Instruction)List[Index];
            }
        }