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

SetRange() public method

public SetRange ( int index, ICollection c ) : void
index int
c ICollection
return void
			public override void SetRange(int index, ICollection c) 
			{
				VerifyStateChanges();

				if (index < 0 || index > m_InnerCount) 
				{
					ThrowNewArgumentOutOfRangeException ("index", index,
						"Index must be >= 0 and <= Count.");
				}

				m_InnerArrayList.SetRange(m_InnerIndex + index, c);

				m_InnerStateChanges = m_InnerArrayList._version;
			}