string result = strSqlResult.Substring(3).Trim().Replace("\n", "").Replace(" ", "").Replace("\t", "").Replace("\r", "");
//正确的列顺序 string[] str = result.Split(',');
for (int i = 0; i < str.Length; i++) {
//将DataColumn的序号或位置更改为指定位置的序号或位置 dataTable.Columns[str[i]].SetOrdinal(i); }
|
请发表评论