Exemplo n.º 1
0
 /// <summary>Copies the entire heap to a compatible one-dimensional array, starting at the given index.</summary>
 /// <param name="array">The array to which the heap should be copied.</param>
 /// <param name="index">The starting index.</param>
 public virtual void CopyTo(System.Array array, int index)
 {
     _list.CopyTo(array, index);
 }