Exemplo n.º 1
0
 /// <summary>
 /// Copies the elements in the <c>Set</c> to an array.  The type of array needs
 /// to be compatible with the objects in the <c>Set</c>, obviously.
 /// </summary>
 /// <param name="array">An array that will be the target of the copy operation.</param>
 /// <param name="index">The zero-based index where copying will start.</param>
 public sealed override void CopyTo(Array array, int index)
 {
     _basisSet.CopyTo(array, index);
 }