Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 목록에서 지정된 인덱스의 요소를 가져오거나 설정합니다.

<시간/>

목록에서 지정된 인덱스에 있는 요소를 가져오거나 설정하려면 코드는 다음과 같습니다. -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<String> list = new List<String>();
      list.Add("100");
      list.Add("200");
      list.Add("300");
      list.Add("400");
      list.Add("500");
      list.Add("600");
      list.Add("700");
      list.Add("800");
      list.Add("900");
      list.Add("1000");
      Console.WriteLine("Element at index 0 = " + list[0]);
      Console.WriteLine("Element at index 1 = " + list[1]);
      Console.WriteLine("Element at index 2 = " + list[2]);
      Console.WriteLine("Element at index 3 = " + list[3]);
      Console.WriteLine("Element at index 4 = " + list[4]);
      Console.WriteLine("Element at index 5 = " + list[5]);
      Console.WriteLine("Element at index 6 = " + list[6]);
      Console.WriteLine("Element at index 7 = " + list[7]);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Element at index 0 = 100
Element at index 1 = 200
Element at index 2 = 300
Element at index 3 = 400
Element at index 4 = 500
Element at index 5 = 600
Element at index 6 = 700
Element at index 7 = 800

다른 예를 살펴보겠습니다 -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<String> list = new List<String>();
      list.Add("100");
      list.Add("200");
      list.Add("300");
      list.Add("400");
      list.Add("500");
      list.Add("600");
      list.Add("700");
      list.Add("800");
      list.Add("900");
      list.Add("1000");
      Console.WriteLine("Element at index 0 = " + list[0]);
      Console.WriteLine("Element at index 1 = " + list[1]);
      Console.WriteLine("Element at index 2 = " + list[2]);
      Console.WriteLine("Element at index 3 = " + list[3]);
      Console.WriteLine("Element at index 4 = " + list[4]);
      Console.WriteLine("Element at index 5 = " + list[5]);
      Console.WriteLine("Element at index 6 = " + list[6]);
      Console.WriteLine("Element at index 7 = " + list[7]);
      list[3] = "450";
      Console.WriteLine("Element at index 3 [UPDATED] = " + list[3]);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Element at index 0 = 100
Element at index 1 = 200
Element at index 2 = 300
Element at index 3 = 400
Element at index 4 = 500
Element at index 5 = 600
Element at index 6 = 700
Element at index 7 = 800
Element at index 3 [UPDATED] = 450