Insert() public method

Inserts an element into the Vector3List at the specified index.
/// is less than zero /// -or- /// is equal to or greater than . ///
public Insert ( int index, Vector3 item ) : void
index int The zero-based index at which should be inserted.
item Vector3 The to insert.
return void
 public override void Insert(int pos, Vector3 x)
 {
     lock (this.m_root)
         m_collection.Insert(pos, x);
 }