IndexOf() public méthode

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.
Résultat int
 public override int IndexOf(Vector3 x)
 {
     lock (this.m_root)
         return(m_collection.IndexOf(x));
 }
 public override int IndexOf(Vector3 x)
 {
     return(m_collection.IndexOf(x));
 }