Axiom.Math.Collections.QuaternionCollection.SyncQuaternionCollection.RemoveAt C# (CSharp) Method

RemoveAt() public method

public RemoveAt ( int pos ) : void
pos int
return void
            public override void RemoveAt( int pos )
            {
                lock ( this.m_root )
                    m_collection.RemoveAt( pos );
            }