ArrayList al = new ArrayList();
al.Add(i.ToString());
al.Add(rso);
///....
String[] s = new String[al.Count];
a.CopyTo(s);
//将dt中的重复数据过滤掉
DataView myDataView = new DataView(dt);
// string[] strComuns ={ "站点编号", "站点名称", "时间" };//此处可加任意数据项组合
dt = myDataView.ToTable(true, strComuns);
//将dt中的重复数据过滤掉