System.Collections.ArrayList.ListWrapper.Insert C# (CSharp) Method

Insert() public method

public Insert ( int index, object value ) : void
index int
value object
return void
			public virtual void Insert(int index, object value) 
			{
				m_InnerList.Insert(index, value);
			}