Copies the items in the heap into an array. Items are not copied in priority order.

Declaration Syntax

Public Overridable Sub CopyTo( _
	ByVal array As Array, _
	ByVal index As Integer _
)
public virtual void CopyTo(
	Array array, 
	int index
);
public: virtual void CopyTo(
	Array array, 
	int index
);
public function CopyTo(
	array : Array, 
	index : int
);

Parameters

array
The array into which items should be copied. 
index
The indes at which to start copying items into the array. 

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