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

IndexOf() public method

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