作者:VB.NET开发
项目:System.Dat
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