DataSet.Copy Metodo

Definizione

Copia la struttura e i dati per questa classe DataSet.

public:
 System::Data::DataSet ^ Copy();
public System.Data.DataSet Copy ();
member this.Copy : unit -> System.Data.DataSet
Public Function Copy () As DataSet

Restituisce

Nuovo oggetto DataSet con la stessa struttura (schemi, relazioni e vincoli della tabella) e gli stessi dati dell'oggetto DataSet corrente.

Esempio

Nell'esempio seguente viene usato il Copy metodo per creare una copia dell'originale DataSet.

private void CopyDataSet(DataSet dataSet)
{
    // Create an object variable for the copy.
    DataSet copyDataSet;
    copyDataSet = dataSet.Copy();

    // Insert code to work with the copy.
}
Private Sub CopyDataSet(ByVal dataSet As DataSet )
    ' Create an object variable for the copy.
    Dim copyDataSet As DataSet = dataSet.Copy()

    ' Insert code to work with the copy.
End Sub

Commenti

Se queste classi sono state suddivise in sottoclassi, verrà eseguita anche una copia delle stesse sottoclassi.

Si applica a

Vedi anche