Catel.Fody.InstructionListExtensions.Prepend C# (CSharp) 메소드

Prepend() 공개 정적인 메소드

public static Prepend ( this collection ) : void
collection this
리턴 void
        public static void Prepend(this Collection<Instruction> collection, params Instruction[] instructions)
        {
            for (var index = 0; index < instructions.Length; index++)
            {
                var instruction = instructions[index];
                collection.Insert(index, instruction);
            }
        }