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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.