IndexOf() public method

Returns the zero-based index of the first occurrence of a Vector3 in the Vector3List.
public IndexOf ( Vector3 item ) : int
item Vector3 The to locate in the Vector3List.
return int
コード例 #1
0
 public override int IndexOf(Vector3 x)
 {
     lock (this.m_root)
         return(m_collection.IndexOf(x));
 }
コード例 #2
0
 public override int IndexOf(Vector3 x)
 {
     return(m_collection.IndexOf(x));
 }