Catel.Fody.InstructionListExtensions.Insert C# (CSharp) Méthode

Insert() public static méthode

public static Insert ( this collection, int index ) : int
collection this
index int
Résultat int
        public static int Insert(this IList<Instruction> collection, int index, params Instruction[] instructions)
        {
            foreach (var instruction in instructions.Reverse())
            {
                collection.Insert(index, instruction);
            }
            return index + instructions.Length;
        }
    }

Same methods

InstructionListExtensions::Insert ( this collection, int index, List instructions ) : int