从C#中的集合中检索元素
让我们看一个列表集合的例子。
我们已经设置了元素-
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);
}
}热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志