静的配列は、固定サイズのデータ構造です。 C# の静的配列の例を見てみましょう。
これは静的な文字列配列です。ここではデータは変更されません。つまり、固定されています -
static string[] _fruits = new string[] { "apple", "mango" };
次に、C# で静的配列を作成してアクセスする完全な例を見てみましょう -
using System; class Demo { static void Main() { foreach (string fruits in Program.Fruits) { Console.WriteLine(fruits); } } } public static class Program { static string[] _fruits = new string[] { "apple", "mango" }; public static string[] Fruits { get { return _fruits; } } }
以上がC# の静的配列または固定長配列とは何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。