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