ZForge.Controls.XPTable.Models.RowCollection.AddRange C# (CSharp) Method

AddRange() public method

Adds an array of Row objects to the collection
public AddRange ( Row rows ) : void
rows Row An array of Row objects to add /// to the collection
return void
        public void AddRange(Row[] rows)
        {
            if (rows == null)
            {
                throw new System.ArgumentNullException("Row[] is null");
            }

            for (int i=0; i<rows.Length; i++)
            {
                this.Add(rows[i]);
            }
        }