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

this() public method

public this ( int i ) : Vector3
i int
return Vector3
            public override Vector3 this[ int i ]
            {
                get
                {
                    lock ( this.m_root )
                        return m_collection[ i ];
                }
                set
                {
                    lock ( this.m_root )
                        m_collection[ i ] = value;
                }
            }