ValidatorCollection.CopyTo(Array, Int32) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Copia l'insieme di validator nella matrice specificata, a partire dalla posizione specificata.
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
Insieme al quale viene aggiunto il controllo server di convalida.
- index
- Int32
Indice nel quale viene copiato il controllo server di convalida.
Implementazioni
Esempio
Nell'esempio di codice seguente viene illustrato l'uso del CopyTo metodo .
// Get 'Validators' of the page to myCollection.
ValidatorCollection myCollection = Page.Validators ;
// Object Array.
Object[] myObjArray = new Object[5] { 0, 0, 0, 0, 0 };
// Copy the 'Collection' to 'Array'.
myCollection.CopyTo(myObjArray,0);
// Print the values in the Array.
string myStr = " ";
for(int i = 0; i<myCollection.Count; i++)
{
myStr += myObjArray[i].ToString();
myStr += " ";
}
msgLabel.Text = myStr;
' Get 'Validators' of the page to myCollection.
Dim myCollection As ValidatorCollection = Page.Validators
Dim myObjArray() As Object = New Object(4){0, 0, 0, 0, 0}
' Copy the 'Collection' to 'Array'.
myCollection.CopyTo(myObjArray, 0)
' Print the values in the Array.
Dim myStr As String = " "
Dim i As Integer
For i = 0 To myCollection.Count - 1
myStr += myObjArray(i).ToString()
myStr += " "
Next i
msgLabel.Text = myStr