Hd.QueryExtensions.OrderByTermCollection.AddRange C# (CSharp) Method

AddRange() public method

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

Same methods

OrderByTermCollection::AddRange ( OrderByTermCollection items ) : void