111,094
社区成员




private void CopyDataSet(DataSet dataSet)
{
// Create an object variable for the copy.
DataSet copyDataSet;
copyDataSet = dataSet.Copy();
// Insert code to work with the copy.
}
ds2.Tables.Add(ds.Tables["B表"]);