목록 모음의 예를 살펴보겠습니다.
요소를 −
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!