System.Collections.ArrayList.SyncArrayList.InsertRange C# (CSharp) Method

InsertRange() private method

private InsertRange ( int index, ICollection c ) : void
index int
c ICollection
return void
            public override void InsertRange(int index, ICollection c)
            {
                lock (_root)
                {
                    _list.InsertRange(index, c);
                }
            }