using System.Collections.ObjectModel; class Good { public static readonly ReadOnlyCollection Foo = new ReadOnlyCollection(new string[] { "hello", "world" }); public static void Main(string[] args) { } }