a{get{returnnewList 在C#中,使用readonly來宣告一個const陣列。 在readonly中,與const不同的是,您也可以在執行時設定值。 實作上述內容的另一個替代方法是 − .NET Framework 4.5 為我們帶來了改進 - 以上是在 C# 中宣告 const 數組的詳細內容。更多資訊請關注PHP中文網其他相關文章!在 C# 中宣告 const 數組
public static readonly string[] a = { "Car", "Motorbike", "Cab" };
public ReadOnlyCollection<string> a { get { return new List<string> { "Car", "Motorbike", "Cab" }.AsReadOnly();}}
public ReadOnlyCollection<string> a { get; } = new ReadOnlyCollection<string>(
new string[] { "Car", "Motorbike", "Cab" }
);