Axiom.Math.Collections.Vector3List.this C# (CSharp) 메소드

this() 공개 메소드

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.
리턴 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