RemoveAt() public method

Removes the element at the specified index of the QuaternionCollection.
/// is less than zero /// -or- /// is equal to or greater than . ///
public RemoveAt ( int index ) : void
index int The zero-based index of the element to remove.
return void
Example #1
0
 public override void RemoveAt(int pos)
 {
     lock (this.m_root)
         m_collection.RemoveAt(pos);
 }