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

Insert() public method

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. ///
return void
        public virtual void Insert(int index, RsdApi value)
        {
            this.List.Insert(index, value);
        }