a{get{returnnewList{&quo"/> a{get{returnnewList{&quo">

首頁  >  文章  >  後端開發  >  在 C# 中宣告 const 數組

在 C# 中宣告 const 數組

王林
王林轉載
2023-09-03 23:37:021364瀏覽

在 C# 中声明 const 数组

在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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除