Copies the items in the heap into an array.

Declaration Syntax

Public Overridable Sub CopyTo( _
	ByVal array() As T, _
	ByVal arrayIndex As Integer _
)
public virtual void CopyTo(
	T[] array, 
	int arrayIndex
);
public: virtual void CopyTo(
	T array __gc[], 
	int arrayIndex
);
public function CopyTo(
	array : T[], 
	arrayIndex : int
);

Parameters

array
The array into which items should be copied. 
arrayIndex
The place in the array at which copying should begin. 

Requirements

Namespace: Eas.WebCrawler.Common.Collections
Assembly: Eas.WebCrawler.Common (eas.webcrawler.common.dll)

See Also

BinaryHeap`1 Class | BinaryHeap`1 Members | Eas.WebCrawler.Common.Collections Namespace