I want to create a static ReadOnlyCollection with strings.
Is there any way to make this expression shorter or more elegant in some way?
public static readonly ReadOnlyCollection<string> ErrorList = new ReadOnlyCollection<string>(
new string[] {
"string1",
"string2",
"string3",
}
);
Edit: I have a code in which I use it many times, but in different files.
stringinnew string[] {...but not anything else... – SWeko Jan 30 at 9:55