System.Collections.ArrayList.SyncArrayList.SetRange C# (CSharp) 메소드

SetRange() 개인적인 메소드

private SetRange ( int index, ICollection c ) : void
index int
c ICollection
리턴 void
            public override void SetRange(int index, ICollection c)
            {
                lock (_root)
                {
                    _list.SetRange(index, c);
                }
            }