使用ArrayList类的Item属性可以获取或设置ArrayList中指定索引处的元素。
Item属性是一个索引器,因此您可以在不添加属性名称的情况下使用它。
在下面的示例中,我们像下面的语句一样使用它-
Console.WriteLine("Element {0} is \"{1}\"", 2, arrList[1]);
让我们看完整的示例,学习如何使用Item属性。
using System; using System.Collections; class Demo { public static void Main() { ArrayList arrList = new ArrayList(); arrList.Add(45); arrList.Add(78); arrList.Add(88); Console.WriteLine("Total elements: "+arrList.Count); Console.WriteLine("Element {0} is \"{1}\"", 2, arrList[1]); } }
输出结果
Total elements: 3 Element 2 is "78"