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
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET