C#에서는 readonly를 사용하여 const 배열을 선언합니다.
public static readonly string[] a = { "Car", "Motorbike", "Cab" };
읽기 전용에서는 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!