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

CopyTo() public method

Copies the values to a one-dimensional instance at the specified index.
/// is multidimensional. /// -or- /// The number of elements in the is greater than /// the available space between and the end of /// . /// is . is less than 's lowbound.
public CopyTo ( WhereClause array, int index ) : void
array WhereClause The one-dimensional that is the destination of the values copied from .
index int The index in where copying begins.
return void
		public void CopyTo(WhereClause[] array, int index)
		{
			List.CopyTo(array, index);
		}