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

this() public method

Gets or sets the RssCategory at the given index in this RssCategoryCollection.
public this ( int index ) : RssCategory
index int
return RssCategory
        public virtual RssCategory this[int index]
        {
            get
            {
                return (RssCategory) this.List[index];
            }
            set
            {
                this.List[index] = value;
            }
        }