C#のStringCollection内の文字列の数を取得します
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 strCol = new StringCollection(); String[] strArr = new String[] { "10", "20", "30", "40", "50" }; Console.WriteLine("StringCollection elements..."); foreach (string str in strArr) { Console.WriteLine(str); } strCol.AddRange(strArr); Console.WriteLine("Count of strings in StringCollection = " + strCol.Count); } }
出力
これにより、次の出力が生成されます-
StringCollection elements... 10 20 30 40 50 Count of strings in StringCollection = 5
-
C#でファイルのバイト数を取得します
FileInfoタイプには、ファイルのバイト数を決定するLengthプロパティがあります。 まず、ファイルを設定します- FileInfo file = new FileInfo("D:\\new"); 次に、Lengthプロパティを使用します- file.Length これが完全なコードです- 例 using System; using System.Linq; using System.IO; class Program { static void Main() { FileInfo file =
-
C#でドライブ形式を取得する
DriveFormatプロパティを使用して、C#でドライブ形式を取得します。 フォーマットを表示するドライブを設定します- DriveInfo dInfo = new DriveInfo("C"); 次に、DriveFormatを使用してドライブフォーマットを取得します- dInfo.DriveFormat Windowsシステムのドライブ形式は、NTFSまたはFAT32です。 これが完全なコードです- 例 using System; using System.Linq; using System.IO; public class Demo { &nb