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.

link|improve this question

1  
you could omit the string in new string[] {... but not anything else... – SWeko Jan 30 at 9:55
feedback

4 Answers

up vote 4 down vote accepted
public static readonly ReadOnlyCollection<string> ErrorList = new ReadOnlyCollection<string>(
  new [] {
    "string1",
    "string2",
    "string3"
  }
);
link|improve this answer
feedback

Another option is to use List<T> with a collection initializer, and the AsReadOnly method:

public static readonly ReadOnlyCollection<string> ErrorList = new List<String> {
    "string1",
    "string2",
    "string3",
  }.AsReadOnly();
link|improve this answer
But, is it more elegant ... – Frederik Gheysels Jan 30 at 10:20
@FrederikGheysels: Personally I'd be happy with either approach. I think I prefer this over explicitly creating an array and then wrapping it, but both will work equally well. – Jon Skeet Jan 30 at 10:24
feedback

The most compact I think is:

using StringCol = ReadOnlyCollection<string>;
...
public static readonly StringCol ErrorList = new StringCol(
      new[]
      {
        "string1",
        "string2",
        "string3",
      });

The using directive is just here to reduce the amount of code in case you're using ReadOnlyCollection<string> a lot. If it's not the case, it won't reduce anything.

link|improve this answer
2  
Picky: That's a using directive, not a using statement. But I don't think it's the most compact form available :) – Jon Skeet Jan 30 at 10:00
1  
@JonSkeet Thanks for the pointing out the 'using' mistake, edited ;) And actually you're right it's not the shortest one here. – ken2k Jan 30 at 10:16
feedback

I thought of another possibility, by combining some of the great answers in this post.

Create a custom method with params:

    public static ReadOnlyCollection<String> CreateStringsReadOnlyCollection(params  string[] st){

        return new ReadOnlyCollection<String>(st);
    }

And then using it like:

 public readonly static ReadOnlyCollection<String> col = CreateStringsReadOnlyCollection("string1", "string2", "string3");

What do you think about it? I would love to hear your opinions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.