DataSet StringToDataSet(string str){
   System.IO.StringReader sr=new System.IO.StringReader(strDsc);
   DataSet ds=new DataSet();
   ds.ReadXml(sr);
   return ds;
}

String DataSetToString(DataSet ds){
   string str=ds.GetXml();
   return str;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-07
  • 2021-07-24
  • 2021-08-27
  • 2021-10-19
猜你喜欢
  • 2022-12-23
  • 2021-06-25
  • 2022-01-26
  • 2021-07-12
  • 2021-06-09
  • 2022-12-23
  • 2021-08-21
相关资源
相似解决方案