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

Last() public method

Gets the last instruction of the collection.
public Last ( ) : x86Instruction
return x86Instruction
        public x86Instruction Last()
        {
            return (x86Instruction)List[List.Count - 1];
        }