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

C#の配列に存在する要素の総数


配列に存在する要素の総数を取得するには、コードは次のとおりです-

using System;
public class Demo {
   public static void Main() {
      string[] products = { "Electronics", "Accessories", "Clothing", "Toys", "Clothing", "Furniture" };
      Console.WriteLine("Products list...");
      foreach(string s in products) {
         Console.WriteLine(s);
      }
      Console.WriteLine("Array length = "+products.GetLength(0));
      Console.WriteLine("\nOne or more products begin with the letter 'C'? = {0}", Array.Exists(products, ele => ele.StartsWith("C")));
      Console.WriteLine("One or more planets begin with 'D'? = {0}", Array.Exists(products, ele => ele.StartsWith("D")));
      Console.WriteLine("One or more products begin with the letter 'T'? = {0}", Array.Exists(products, ele => ele.StartsWith("T")));
      Console.WriteLine("One or more planets begin with 'E'? = {0}", Array.Exists(products, ele => ele.StartsWith("E")));
   }
}

出力

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

Products list...
Electronics
Accessories
Clothing
Toys
Clothing
Furniture
Array length = 6

One or more products begin with the letter 'C'? = True
One or more planets begin with 'D'? = False
One or more products begin with the letter 'T'? = True
One or more planets begin with 'E'? = True

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

using System;
public class Demo {
   public static void Main() {
      string[] products = new string[] { };
      Console.WriteLine("Array length = "+products.GetLength(0));
      Console.WriteLine("Is the array having fixed size? = " + products.IsFixedSize);
      Console.WriteLine("Is the array read only? = " + products.IsReadOnly);
   }
}

出力

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

Array length = 0
Is the array having fixed size? = True
Is the array read only? = False

  1. 配列のバイト数をカウントするC#プログラム

    バイト配列を設定する- byte[] b = { 5, 9, 19, 23, 29, 35, 55, 78 }; バイト数をカウントするには- Buffer.ByteLength(b) 以下はコードです- 例 using System; class Program {    static void Main() {       byte[] b = { 5, 9, 19, 23, 29, 35, 55, 78 };       int len = Buffer.ByteLength(b);   &nb

  2. C#で配列から要素にアクセスする方法は?

    まず、配列を定義して初期化します- int[] p = new int[3] {99, 92, 95}; 次に、配列要素を表示します- for (j = 0; j < 3; j++ ) {    Console.WriteLine("Price of Product[{0}] = {1}", j, p[j]); } 任意の要素にアクセスするには、次のように必要な要素のインデックスを含めるだけです- p[2]; 上記は3番目の要素にアクセスするためのものです。 ここで、完全なコードを見てみましょう- 例 using System; name