摘要:
数组删除与合并 string strId = e.Item.Cells[0].Text.ToString(); string[] arr = ViewData.FileInfo.MeetingIdList.Split(','); ArrayList al = new ArrayList(arr); for (int i = 0; i < al.Count; i++) { if (strId == al[i].ToString()) { al.RemoveAt(i);} } arr = (string[])al.ToArray(typeof(string)); ViewDa 阅读全文