C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#でStringCollectionを作成するにはどうすればよいですか?


C#でStringCollectionを作成するためのコードは、次のとおりです-

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      StringCollection strCol = new StringCollection();
      String[] strArr = new String[] { "A", "B", "C", "D", "E", "F", "G", "H" };
      Console.WriteLine("StringCollection elements...");
      foreach (string str in strArr){
         Console.WriteLine(str);
      }
      strCol.AddRange(strArr);
      Console.WriteLine("Element at 5th index = "+strCol[5]);
      Console.WriteLine("Count of strings in StringCollection = " + strCol.Count);
   }
}

出力

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

StringCollection elements...
A
B
C
D
E
F
G
H
Element at 5th index = F
Count of strings in StringCollection = 8

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

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      StringCollection stringCol = new StringCollection();
      String[] arr = new String[] { "100", "200", "100", "400", "500" };
      Console.WriteLine("Array elements...");
      foreach (string res in arr){
         Console.WriteLine(res);
      }
      stringCol.AddRange(arr);
      Console.WriteLine("Total number of elements = "+stringCol.Count);
      stringCol.Remove("100");
      Console.WriteLine("Total number of elements now = "+stringCol.Count);
   }
}

出力

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

Array elements...
100
200
100
400
500
Total number of elements = 5
Total number of elements now = 4

  1. Windows11のWindowstoGoバージョンを作成する方法

    場合によっては、Windows 11で簡単なタスクを実行する必要があります。その場合、別のドライブを割り当てても、ハードドライブを有利に使用することはできません。したがって、Windowsのポータブルバージョンを作成します。この記事では、 Windows to Goを作成する方法を説明します。 Windows 11のバージョン 、これはポータブルバージョンなので、USBを接続するだけで、この新しいWindowsのバージョンを使用できます。 Windows11のWindowstoGoバージョンを作成する Windows11のWindowstoGoバージョンを作成するには、次の手順を実

  2. AppleIDを作成する方法

    Apple IDがなければ、Appleの製品やサービスの世界を遠くまで行くことはできません。幸いなことに、セットアップは非常に簡単です。この記事では、自分自身または子供用のApple IDを作成する方法、強力なセキュリティを設定する方法、およびファミリー共有グループを開始する方法を示します。 Apple IDアカウント管理の詳細については、「AppleIDを変更する方法」および「AppleIDアカウントを使用する方法」を参照してください。 Apple IDにサインアップするには、こちらのWebサイトのAppleのIDセクションにアクセスし、[Create AnAppleID]をクリックします