Is it possible somehow to achieve this behavior in C#:

public interface IReadOnly
{
    Data Value { get; }
}

internal interface IWritable : IReadOnly 
{
    Data Value { get; set; }
}

I want to be able to expose a readonly interface to outside assemblies, but use a writable interface internally (which I could also implement in different ways).

I know I can use an abstract class which implements IReadOnly but adds setters, but that forces me to derive all internal implementations from that class.

link|improve this question
1  
@Nick: good point, but setter is converted to a setValue method under the hood anyway. I am wondering why this is not allowed. – doe Jul 19 '11 at 14:44
feedback

2 Answers

up vote 5 down vote accepted

This isn't a problem:

public interface IReadOnly {
    Data Value { get; }
}

internal interface IWritable : IReadOnly {
    new Data Value { get; set; }
}

internal class Impl : IWritable {
    public Data Value { get; set; }
}

The Impl.Value property implementation takes care of both IReadOnly.Value and IWritable.Value, as demonstrated in this test snippet:

        var obj = new Data();
        var target = new Impl();
        var irw = (IWritable)target;
        irw.Value = obj;
        var iro = (IReadOnly)target;
        System.Diagnostics.Debug.Assert(Object.ReferenceEquals(iro.Value, obj));
link|improve this answer
oh, that's great news. I saw that I could achieve it using the new keyword, but thought that it will somehow hide the base value (or make me implement IReadOnly explicitly). – doe Jul 19 '11 at 14:52
@Hans : Also, iirc, if you set Impl as "public class Impl : IReadOnly, IWritable" anything outside the current namespace will see Impl as IReadOnly ONLY and anything inside the namespace will see Impl as IReadOnly AND IWritable. Right? – Tipx Jul 19 '11 at 14:58
+1 awesome answer :) – Mehrdad Jul 19 '11 at 15:00
@Tipx - the OP declared IWritable internal. Which requires that Impl is internal as well. All that's visible from the outside is IReadOnly. Whatever code creates an instance of Impl and exposes the interface will have to live inside that same assembly. – Hans Passant Jul 19 '11 at 15:07
feedback

For this to work well, one should declare and implement an IReadWrite, which inherits both IReadable and IWritable, and includes a "new" read-write property. Otherwise an interface that has separate get and set properties, but no get-set property, will be neither readable nor writable.

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.