Axiom.Math.Collections.Vector3List.ReadOnlyVector3List.this C# (CSharp) Method

this() public method

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