I often have classes exposing lists as ReadOnlyCollection<T>s, i.e.

public class Class
{
  List<string> list;

  public ReadOnlyCollection<string> TheList
  {
    get { return list.AsReadOnly(); }
  }
}

What's the best way to do this for an IDictionary<T,U> such as a SortedList<string, string>?

link|improve this question

Interfaces have nothing to do with implementation. IDictionary<T,U> provides write-methods by definition. So you just cannot remove them from it. – zerkms May 20 '11 at 1:42
feedback

2 Answers

up vote 2 down vote accepted
public class ReadOnlyDictionary<TKey, TValue> : IDictionary<TKey, TValue>
{
    private readonly IDictionary<TKey, TValue> sourceDictionary;

    public ICollection<TKey> Keys
    {
        get { return sourceDictionary.Keys; }
    }

    public ICollection<TValue> Values
    {
        get { return sourceDictionary.Values; }
    }

    public TValue this[TKey key]
    {
        get { return sourceDictionary[key]; }
        set { throw new NotSupportedException(); }
    }

    public int Count
    {
        get { return sourceDictionary.Count; }
    }

    public bool IsReadOnly
    {
        get { return true; }
    }

    public ReadOnlyDictionary(IDictionary<TKey, TValue> sourceDictionary)
    {
        AssertUtilities.ArgumentNotNull(sourceDictionary, "sourceDictionary");

        this.sourceDictionary = sourceDictionary;
    }

    void IDictionary<TKey, TValue>.Add(TKey key, TValue value)
    {
        throw new NotSupportedException();
    }

    public bool ContainsKey(TKey key)
    {
        return sourceDictionary.ContainsKey(key);
    }

    bool IDictionary<TKey, TValue>.Remove(TKey key)
    {
        throw new NotSupportedException();
    }

    public bool TryGetValue(TKey key, out TValue value)
    {
        return sourceDictionary.TryGetValue(key, out value);
    }

    void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item)
    {
        throw new NotSupportedException();
    }

    void ICollection<KeyValuePair<TKey, TValue>>.Clear()
    {
        throw new NotSupportedException();
    }

    public bool Contains(KeyValuePair<TKey, TValue> item)
    {
        return sourceDictionary.Contains(item);
    }

    public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
    {
        sourceDictionary.CopyTo(array, arrayIndex);
    }

    bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item)
    {
        throw new NotSupportedException();
    }

    public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
    {
        return sourceDictionary.GetEnumerator();
    }

    IEnumerator IEnumerable.GetEnumerator()
    {
        return ((IEnumerable)sourceDictionary).GetEnumerator();
    }
}

[Edit] @Simon Buchan and @Cory Nelson pointed out that it is better to use implicit interface implementation for those methods that are not supported. Updated the code accordingly.

link|improve this answer
Cheers, I think I'll do this with the alteration of inheriting from ReadOnlyCollection<KeyValuePair<TKey, TValue>> – Matthew Finlay May 20 '11 at 1:52
@Matthew Finlay - I suggest not to do this. You will lose the power of dictionary, like optimized search. – Alex Aza May 20 '11 at 1:55
@Alex, just curious, why do you include Add()/Remove()/Clear() and throw NSE's? Why not just leave them out all together? – jb. May 20 '11 at 2:09
@jb - if you have usages that by accident use those methods, you would rather prefer to crash so you know about the bug, rather than have subtle bugs. – Alex Aza May 20 '11 at 2:20
@Alex, oh, I see, clever. – jb. May 20 '11 at 2:34
show 8 more comments
feedback

Create a ReadOnlyDictionary class that implements IDictionary as a wrapper around an internal Dictionary instance. For the methods that would modify the dictionary, throw an exception. Implement IsReadOnly to return true. Implement all other methods to pass through to the internal Dictionary instance.

link|improve this answer
I think that throwing an exception is not a good idea, since it is a runtime event. – zerkms May 20 '11 at 1:46
I'd also reccommend making IsReadOnly and the modifying methods explicit interface implementations to match ReadOnlyCollection: bool IDictionary<TKey, TValue>.IsReadOnly { get { return true; } }. You can explicitly implement the indexer setter if you forward the getter to the implicit getter: TValue IDictionary<TKey, TValue>.this[TKey key] { get { return this[key]; } set { throw InvalidOperationException(); } } – Simon Buchan May 20 '11 at 1:50
@zerkms: ReadOnlyCollection throws NotSupportedException("Collection is read-only.") on it's explicit implementations. – Simon Buchan May 20 '11 at 1:53
@Simon Buchan: yes, and it is not a static check. – zerkms May 20 '11 at 1:56
feedback

Your Answer

 
or
required, but never shown

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