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

this() public method

Gets or sets the Vector3 at the specified index.
/// is less than zero /// -or- /// is equal to or greater than . ///
public this ( int index ) : Vector3
index int The zero-based index of the element to get or set.
return Vector3
        public virtual Vector3 this[ int index ]
        {
            get
            {
                ValidateIndex( index ); // throws
                return m_array[ index ];
            }
            set
            {
                ValidateIndex( index ); // throws
                ++m_version;
                m_array[ index ] = value;
            }
        }

Same methods

Vector3List::this ( int i ) : objectIList.System