让我们看一个列表集合的例子。
我们设置了元素 −
List<int> list = new List<int>(); list.Add(20); list.Add(40); list.Add(60); list.Add(80);
现在假设我们需要从列表中检索第一个元素。为此,设置索引如下−
int a = list[0];
以下是一个示例,展示了如何从列表集合中检索元素 −
using System; using System.Collections.Generic; class Demo { static void Main(String[] args) { List<int> list = new List<int>(); list.Add(20); list.Add(40); list.Add(60); list.Add(80); foreach (int val in list) { Console.WriteLine(val); } int a = list[0]; Console.WriteLine("First element: "+a); } }
以上是在C#中检索集合中的元素的详细内容。更多信息请关注PHP中文网其他相关文章!