newtelligence.DasBlog.Web.Services.Rss20.RssCategoryCollection.Insert C# (CSharp) Method

Insert() public method

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