Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to somehow mark a System.Array as immutable. When put behind a public-get/private-set they can't be added to, since it requires re-allocation and re-assignment, but a consumer can still set any subscript they wish:

public class Immy
{
    public string[] { get; private set; }
}

I thought the readonly keyword might do the trick, but no such luck.

share|improve this question
2  
That property is missing a name, isn't it? – Svish Dec 6 '09 at 10:44
The property is called "immutable" - it's in this sense that strings are immutable (unless you access the char pointer in unsafe code, which you really shouldn't do because they're interned.) – Phil Whittington Oct 19 '12 at 13:11

9 Answers

up vote 15 down vote accepted

ReadOnlyCollection is probably what you are looking for. It doesnt have an Add() method.

http://msdn.microsoft.com/en-us/library/ms132474.aspx

share|improve this answer
More accurately, it doesn't have a publicly exposed Add() method. It does have one, because the interfaces require it. But good interface code will check .ReadOnly first before calling it, because doing so would cause an exception. – Matthew Scharley Oct 16 '08 at 21:55
1  
This isn't really the same thing as an immutable array -- ReadOnlyCollection doesn't allow any modifications, but it just wraps a regular List, which can still be changed by the creator. – Henry Jackson Jul 25 '11 at 17:44
2  
@HenryJackson In the end all data in .NET is mutable via Reflection. So meaningful immutability is simply a matter of making the mutability inaccessible. A read-only wrapper to a mutable collection certainly counts as immutable if the reference to the mutable collection is then discarded, making mutation impossible. – Andrew Arnott Dec 24 '12 at 16:45

No, that's not possible in .NET.

The Framework Design Guidelines suggest returning a copy of the Array. That way, consumers can't change items from the array.

// bad code
// could still do Path.InvalidPathChars[0] = 'A';
public sealead class Path {
   public static readonly char[] InvalidPathChars = 
      { '\"', '<', '>', '|' };
}

these are better:

public static ReadOnlyCollection<char> GetInvalidPathChars(){
   return Array.AsReadOnly(badChars);
}

public static char[] GetInvalidPathChars(){
   return (char[])badChars.Clone();
}

The examples are straight from the book.

share|improve this answer

You could use Array.AsReadOnly method to return.

share|improve this answer

I believe best practice is to use IList<T> rather than arrays in public APIs for this exact reason. readonly will prevent a member variable from being set outside of the constructor, but as you discovered, won't prevent people from assigning elements in the array.

See Arrays Considered Somewhat Harmful for more information.

Edit: Arrays can't be read only, but they can be converted to read-only IList implementations via Array.AsReadOnly() as @shahkalpesh points out.

share|improve this answer
That's an excellent article. – Bob King Oct 16 '08 at 21:59

Please see Immutable Collections Now Available in the base class library (currently in preview).

share|improve this answer

The only thing to add is that Arrays imply mutability. When you return an Array from a function, you are suggesting to the client programmer that they can/should change things.

share|improve this answer
Is this a convention or is there a more specific reason for clients expecting this behaviour? – biozinc Feb 16 '09 at 13:43

Further to Matt's answer, IList is a complete abstract interface to an array, so it allows add, remove, etc. I'm not sure why Lippert appears to suggest it as an alternative to IEnumerable where immutability is needed. (Edit: because the IList implementation can throw exceptions for those mutating methods, if you like that kind of thing).

Maybe another thing to bear in mind that the items on the list may also have mutable state. If you really don't want the caller to modify such state, you have some options:

Make sure the items on the list are immutable (as in your example: string is immutable).

Return a deep clone of everything, so in that case you could use an array anyway.

Return an interface that gives readonly access to an item:

interface IImmutable
{
    public string ValuableCustomerData { get; }
}

class Mutable, IImmutable
{
    public string ValuableCustomerData { get; set; }
}

public class Immy
{
    private List<Mutable> _mutableList = new List<Mutable>();

    public IEnumerable<IImmutable> ImmutableItems
    {
        get { return _mutableList.Cast<IMutable>(); }
    }
}

Note that every value accessible from the IImmutable interface must itself be immutable (e.g. string), or else be a copy that you make on-the-fly.

share|improve this answer

The best you can hope to do is extend an existing collection to build your own. The big issue is that it would have to work differently than every existing collection type because every call would have to return a new collection.

share|improve this answer

You might want to check out my answer to a similar question for more ideas on exposing collections on an object.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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