Axiom.Math.Collections.QuaternionCollection.ReadOnlyQuaternionCollection.this C# (CSharp) Method

this() public method

public this ( int i ) : Quaternion
i int
return Axiom.Math.Quaternion
            public override Quaternion this[ int i ]
            {
                get
                {
                    return m_collection[ i ];
                }
                set
                {
                    throw new NotSupportedException( "This is a Read Only Collection and can not be modified" );
                }
            }