System.Collections.ArrayList.SyncArrayList.InsertRange C# (CSharp) Méthode

InsertRange() private méthode

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