AddRange() public method

Adds the elements of a Vector3 array to the current Vector3List.
public AddRange ( Vector3 x ) : int
x Vector3 The array whose elements should be added to the end of the Vector3List.
return int
コード例 #1
0
 public override int AddRange(Vector3List x)
 {
     lock (this.m_root)
         return(m_collection.AddRange(x));
 }