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

首页  >  文章  >  后端开发  >  在 C# 中声明 const 数组

在 C# 中声明 const 数组

王林
王林转载
2023-09-03 23:37:021331浏览

在 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删除