newtelligence.DasBlog.Web.Services.Rsd.RsdApiCollection.IndexOf C# (CSharp) 메소드

IndexOf() 공개 메소드

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. ///
리턴 int
        public virtual int IndexOf(RsdApi value)
        {
            return this.List.IndexOf(value);
        }