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

AddRange() public method

Adds the elements of an array to the end of this RssCategoryCollection.
public AddRange ( RssCategory entries ) : void
entries RssCategory /// The array whose elements are to be added to the end of this RssCategoryCollection. ///
return void
        public virtual void AddRange(RssCategory[] entries)
        {
            foreach (RssCategory entry in entries)
            {
                this.List.Add(entry);
            }
        }

Same methods

RssCategoryCollection::AddRange ( RssCategoryCollection entries ) : void