Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

อาร์เรย์ความยาวคงที่หรือคงที่ใน C # คืออะไร


อาร์เรย์แบบคงที่คือโครงสร้างข้อมูลที่มีขนาดคงที่ ให้เราดูตัวอย่างของอาร์เรย์แบบคงที่ใน 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;
      }
   }
}