System.Collections.ArrayList.FixedSizeArrayList.SetRange C# (CSharp) Method

SetRange() private method

private SetRange ( int index, ICollection c ) : void
index int
c ICollection
return void
            public override void SetRange(int index, ICollection c)
            {
                _list.SetRange(index, c);
                _version = _list._version;
            }