newtelligence.DasBlog.Web.Services.Rsd.RsdApiCollection.AddRange C# (CSharp) 메소드

AddRange() 공개 메소드

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

Same methods

RsdApiCollection::AddRange ( RsdApiCollection items ) : void