摘要:
static public DataSet DataSetFromString(string s) { if (string.IsNullOrEmpty(s)) { return null; } byte[] bytes = Encoding.UTF8.GetBytes(s); Stream inStream = null; DataSet ds = new DataSet(); try { inStre... 阅读全文
posted @ 2013-08-21 14:39
VictorStone
阅读(1010)
评论(0)
推荐(0)