Example #1
0
 /// <summary>
 /// Copies the elements of the <b>ICollection</b> to an array,
 /// starting at a particular array index.
 /// </summary>
 /// <param name="array">
 /// The one-dimensional array that is the destination of the elements
 /// copied from <b>ICollection</b>.
 /// </param>
 /// <param name="index">
 /// The zero-based index in array at which copying begins.
 /// </param>
 public virtual void CopyTo(Array array, int index)
 {
     NamedCache.CopyTo(array, index);
 }