我想要从第5条开始的所有内容,就是不要前5天,怎么实现?
------解决方案--------------------------------------------------------
- C# code
IList<string> strList = new List<string>(); strList.Add("A"); strList.Add("B"); strList.Add("C"); strList.Add("D"); strList.Add("E"); strList.Add("F"); for (int i = 4; i < strList.Count; i++) { Response.Write(strList[i].ToString() + "<br />"); }