System.Collections.ArrayList.SyncIList.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)
            {
                lock (_root)
                {
                    _list.Insert(index, value);
                }
            }