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

C#의 목록에 요소 추가

<시간/>

List에 요소를 추가하기 위한 코드는 다음과 같습니다 -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<String> list = new List<String>();
      list.Add("One");
      list.Add("Two");
      list.Add("Three");
      list.Add("Four");
      list.Add("Five");
      list.Add("Six");
      list.Add("Seven");
      list.Add("Eight");
      Console.WriteLine("Enumerator iterates through the list elements...");
      List<string>.Enumerator demoEnum = list.GetEnumerator();
      while (demoEnum.MoveNext()) {
         string res = demoEnum.Current;
         Console.WriteLine(res);
      }
   }
}

출력

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

Enumerator iterates through the list elements...
One
Two
Three
Four
Five
Six
Seven
Eight

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

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<int> list = new List<int>();
      list.Add(50);
      list.Add(100);
      list.Add(150);
      list.Add(200);
      list.Add(250);
      list.Add(500);
      list.Add(750);
      list.Add(1000);
      list.Add(1250);
      list.Add(1500);
      Console.WriteLine("Enumerator iterates through the list elements...");
      List<int>.Enumerator demoEnum = list.GetEnumerator();
      while (demoEnum.MoveNext()) {
         int res = demoEnum.Current;
         Console.WriteLine(res);
      }
   }
}

출력

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

Enumerator iterates through the list elements...
50
100
150
200
250
500
750
1000
1250
1500