C#
 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("Andy");
      list.Add("Gary");
      list.Add("Katie");
      list.Add("Amy");
      Console.WriteLine("Elements in List...");
      foreach (string res in list){
         Console.WriteLine(res);
      }
      string[] strArr = { "John", "Jacob" };
      list.AddRange(strArr);
      Console.WriteLine("Elements in List...UPDATED");
      foreach(String str in list){
         Console.WriteLine(str);
      }
   }
}

出力

これにより、次の出力が生成されます-

Elements in List...
Andy
Gary
Katie
Amy Elements in List...UPDATED
Andy
Gary
Katie
Amy
John
Jacob

別の例を見てみましょう-

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args){
      List<int> list = new List<int>();
      list.Add(25);
      list.Add(50);
      list.Add(75);
      list.Add(100);
      Console.WriteLine("Elements in List...");
      foreach (int val in list){
         Console.WriteLine(val);
      }
      int[] intArr = { 150, 200, 250, 300 };
      list.AddRange(intArr);
      Console.WriteLine("Elements in List...UPDATED");
      foreach(int val in list){
         Console.WriteLine(val);
      }
   }
}

出力

これにより、次の出力が生成されます-

Elements in List...
25
50
75
100
Elements in List...UPDATED
25
50
75
100
150
200
250
300

  1. 配列の末尾から指定された数の要素を返すC#プログラム

    TakeLast()メソッドを使用して、配列の最後から要素を返します。 まず、配列を宣言して初期化します。 int[] prod = { 110, 290, 340, 540, 456, 698, 765, 789}; それでは、最後の3つの要素を取得しましょう。 IEnumerable<int> units = prod.AsQueryable().TakeLast(3); 完全なコードを見てみましょう。 例 using System; using System.Linq; using System.Collections.Generic; public class Dem

  2. 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 De