newtelligence.DasBlog.Web.Services.Rsd.RssServiceCollection.IndexOf C# (CSharp) Method

IndexOf() public method

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