Declare a const array

Is it possible to write something similar to the following? public const string[] Titles = { “German”, “Spanish”, “Corrects”, “Wrongs” }; 16 s 16 Yes, but you need to declare it readonly instead of const: public static readonly string[] Titles = { “German”, “Spanish”, “Corrects”, “Wrongs” }; The reason is that const can only be … Read more