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

AddRange() public method

Copies the elements of an array to the end of the .
public AddRange ( WhereClause val ) : void
val WhereClause /// An array of type containing the objects to add to the collection. ///
return void
		public void AddRange(WhereClause[] val)
		{
			for (int i = 0; i < val.Length; i++)
			{
				Add(val[i]);
			}
		}

Same methods

WhereClauseCollection::AddRange ( WhereClauseCollection val ) : void