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

Have stepped on my own toes with what I thought was a very simple piece of code. Code speaks better than words, so here it is.

public interface IResponse
{
    IResult Result { get; set; }
}

public class Response<T> : IResponse
    where T : IResult
{
    public T Result { get; set; } 
    // COMPILER ERROR: Property 'Result' cannot be implemented property from interface 'IResponse'. Type should be 'IResult'.
}

The compiler does not allow me to do this because IResponse requires Result to be IResult, however I want to take advantage of generics in the implementing class and strongly type the result to T. Is this just not possible, or have I missed something trivial?

share|improve this question

5 Answers

up vote 8 down vote accepted

They you have to make IResponse generic too:

public interface IResponse<T>
    where T : IResult
{
    T Result { get; set; }
}

public class Response<T> : IResponse<T>
    where T : IResult
{
    public T Result { get; set; } 
}

If you want to keep the IResponse interface without the generic parameter in tact, you can go even fancier. The below has the two interfaces, where the class transparently also implements the interface without the generic parameter:

public interface IResponse
{
    IResult Result { get; set; }
}

public interface IResponse<T> : IResponse
    where T : IResult
{
    T Result { get; set; }
}

public class Response<T> : IResponse<T>
    where T : IResult
{
    public T Result { get; set; } 

    IResult IResponse.Result
    {
        get { return Result; }
        set { Result = (T)value; }
    }
}

And, if you want to stay closer to your original implementation, you can strip out the IResponse<T> and get the following:

public interface IResponse
{
    IResult Result { get; set; }
}

public class Response<T> : IResponse
    where T : IResult
{
    public T Result { get; set; } 

    IResult IResponse.Result
    {
        get { return Result; }
        set { Result = (T)value; }
    }
}
share|improve this answer
Problem with making the interface also generic is that I use it in another class where I dont want it to force me to specify T. – Arkiliknam Dec 30 '11 at 10:44
Yes I thought of that. That's why I've just added the second and third options. – Pieter Dec 30 '11 at 10:45
Just saw you'r update. Looks good and what was buried in my head somewhere. Great stuff! :) – Arkiliknam Dec 30 '11 at 10:46
You're welcome. – Pieter Dec 30 '11 at 10:47

If you 'just' want to "take advantage of generics" you don't need IResponse.

The interface is solving another problem, one that is not compatible with your wish. Consider

IResponse r = x ? new Response<int>() : new Response<string>();
r.Result = ... // what type?

So either make IResponse generic too or remove it altogether.

share|improve this answer

Try this

public class Response<T> : IResponse
    where T : IResult
{
    public T Result { get; set; }
    // COMPILER ERROR: Property 'Result' cannot be implemented property from interface 'IResponse'. Type should be 'IResult'. 

    IResult IResponse.Result
    {
        get { return this.Result; }
        set { this.Result = (T)value; }
    }
} 
share|improve this answer

You should make IResponse generic and change type of Result in IResponse as type paramter passed to this interface.

public interface IResponse<T> where T : IResult
{
    T Result { get; set; }
}

public class Response<T> : IResponse<T>
{
    public T Result { get; set; } 
}
share|improve this answer
public interface IResponse<T> where T : IResult
{
    T Result { get; set; }
}

public class Response<T> : IResponse<T> where T : IResult
{
    public T Result { get; set; } 
    // NO MORE COMPILER ERROR
}
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.