Add() public method

Adds a Vector3 to the end of the Vector3List.
public Add ( Vector3 item ) : int
item Vector3 The to be added to the end of the Vector3List.
return int
 public override int Add(Vector3 x)
 {
     lock (this.m_root)
         return(m_collection.Add(x));
 }