Để có được một bảng liệt kê cho một loạt các phần tử trong ArrayList, mã như sau -
Ví dụ
using System; using System.Collections; public class Demo { public static void Main(){ ArrayList arrList = new ArrayList(); arrList.Add(100); arrList.Add(200); arrList.Add(300); arrList.Add(400); arrList.Add(500); Console.WriteLine("Display elements in a range..."); IEnumerator demoEnum = arrList.GetEnumerator(1, 3); while (demoEnum.MoveNext()) { Object ob = demoEnum.Current; Console.WriteLine(ob); } } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Display elements in a range... 200 300 400
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ khác -
using System; using System.Collections; public class Demo { public static void Main(){ ArrayList arrList = new ArrayList(); arrList.Add("Andy"); arrList.Add("Katie"); arrList.Add("Taylor"); arrList.Add("Steve"); arrList.Add("Nathan"); arrList.Add("Carl"); arrList.Add("Mark"); arrList.Add("Amy"); arrList.Add("Jacob"); arrList.Add("John"); Console.WriteLine("Display elements in a range..."); IEnumerator demoEnum = arrList.GetEnumerator(1, 3); while (demoEnum.MoveNext()) { Object ob = demoEnum.Current; Console.WriteLine(ob); } Console.WriteLine("Display elements in a range..."); demoEnum = arrList.GetEnumerator(3, 5); while (demoEnum.MoveNext()) { Object ob = demoEnum.Current; Console.WriteLine(ob); } } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Display elements in a range... Katie Taylor Steve Display elements in a range... Steve Nathan Carl Mark Amy