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

Insert() 공개 메소드

Inserts an element into the RsdApiCollection at the specified index
public Insert ( int index, RsdApi value ) : void
index int /// The index at which the RsdApi is to be inserted. ///
value RsdApi /// The RsdApi to insert. ///
리턴 void
        public virtual void Insert(int index, RsdApi value)
        {
            this.List.Insert(index, value);
        }