DataSet.Clone Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
virtual System::Data::DataSet ^ Clone();
public virtual System.Data.DataSet Clone ();
abstract member Clone : unit -> System.Data.DataSet
override this.Clone : unit -> System.Data.DataSet
Public Overridable Function Clone () As DataSet
Returns
A new DataSet with the same schema as the current DataSet, but none of the data.
Examples
The following example creates a clone of a DataSet object's schema.
private void GetClone(DataSet dataSet)
{
// Get a clone of the original DataSet.
DataSet cloneSet = dataSet.Clone();
// Insert code to work with clone of the DataSet.
}
Private Sub GetClone(ByVal dataSet As DataSet)
' Get a clone of the original DataSet.
Dim cloneSet As DataSet = dataSet.Clone()
' Insert code to work with clone of the DataSet.
End Sub
Remarks
Note
If these classes have been subclassed, the clone will also be of the same subclasses.
Applies to
See also
Sodelujte z nami v storitvi GitHub
Vir za to vsebino najdete v storitvi GitHub, kjer lahko tudi ustvarite in pregledate težave in zahtevke za uveljavitev sprememb. Če želite več informacij, glejte naš vodnik za sodelavce.