newtelligence.DasBlog.Web.Core.NavigatorItemCollection.IndexOf C# (CSharp) Méthode

IndexOf() public méthode

Return the zero-based index of the first occurrence of a specific value in this NavigatorItemCollection
public IndexOf ( NavigatorItem value ) : int
value NavigatorItem /// The NavigatorItem value to locate in the NavigatorItemCollection. ///
Résultat int
        public virtual int IndexOf(NavigatorItem value)
        {
            return this.List.IndexOf(value);
        }