예제 #1
0
 /// <summary>
 /// Copies the elements of the System.Collections.Generic.ICollection<T> to an
 ///     System.Array, starting at a particular System.Array index.
 /// </summary>
 /// <param name="array">The one-dimensional System.Array that is the destination of the elements
 ///     copied from System.Collections.Generic.ICollection<T>. The System.Array must
 ///     have zero-based indexing.</param>
 /// <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
 public void CopyTo(T[] array, int arrayIndex)
 {
     ResultList.CopyTo(array, arrayIndex);
 }