RepeaterItemCollection.CopyTo(Array, Int32) Metodo

Definizione

Copia tutti gli elementi dall'insieme RepeaterItemCollection nell'oggetto Array specificato, partendo dall'indice indicato nell'oggetto Array.

public:
 virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)

Parametri

array
Array

Array in base zero che riceve gli elementi copiati dalla classe RepeaterItemCollection.

index
Int32

Prima posizione dell'oggetto Array specificato che riceverà il contenuto copiato.

Implementazioni

Esempio

Per visualizzare questo codice nel contesto di un esempio completo, vedere l'argomento RepeaterItemCollection della classe.

      void CopyTo_Clicked(Object Sender, EventArgs e)
      {
labelDisplay.Text = "Invoking CopyTo method.<br />";
labelDisplay.Text += "The Items collection contains: <br />";

// Display the elements of the RepeaterItemCollection using the CopyTo method.
RepeaterItemCollection  myItemCollection = myRepeater.Items;
RepeaterItem[] myItemArray = new RepeaterItem[myItemCollection.Count];
myItemCollection.CopyTo(myItemArray,0);
for(int index=0;index < myItemArray.Length;index++)
{
   RepeaterItem myItem = (RepeaterItem)myItemArray.GetValue(index);
   labelDisplay.Text += ((DataBoundLiteralControl)
      myItem.Controls[0]).Text + "<br />";
}
      }
Sub CopyTo_Clicked(Sender As Object, e As EventArgs)
   labelDisplay.Text = "Invoking CopyTo method.<br />"
   labelDisplay.Text += "The Items collection contains: <br />"
   
   ' Display the elements of the RepeaterItemCollection using the CopyTo method.
   Dim myItemCollection As RepeaterItemCollection = myRepeater.Items
   Dim myItemArray(myItemCollection.Count-1) As RepeaterItem
   myItemCollection.CopyTo(myItemArray, 0)
   Dim index As Integer
   For index = 0 To myItemArray.Length - 1
      Dim myItem As RepeaterItem = CType(myItemArray.GetValue(index), RepeaterItem)
      labelDisplay.Text += CType(myItem.Controls(0), DataBoundLiteralControl).Text + "<br />"
   Next index
End Sub 'CopyTo_Clicked

Commenti

Utilizzare questo metodo per copiare il contenuto dell'oggetto RepeaterItemCollection nell'oggetto specificato, a partire dall'indice specificato System.Array .

Nota

Il array parametro deve essere un oggetto in base System.Array zero.

Si applica a

Vedi anche