TUP.AsmResolver.ASM.InstructionCollection.Insert C# (CSharp) Метод

Insert() публичный Метод

Inserts at the specified index an instruction into the collection.
public Insert ( int index, x86Instruction instruction ) : void
index int The zero-based index at which value should be inserted.
instruction x86Instruction The instruction to insert into the collection.
Результат void
        public void Insert(int index, x86Instruction instruction)
        {
            List.Insert(index, instruction);
        }