newtelligence.DasBlog.Web.Services.Rsd.RssServiceCollection.AddRange C# (CSharp) Method

AddRange() public method

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

Same methods

RssServiceCollection::AddRange ( RssServiceCollection items ) : void