vote up 0 vote down star

Hi, I'm having the following interfaces:

public interface IBase
{
    int id1 { get; set; }
}

public interface IDerived : IBase
{
    int id2 { get; set; }
}

And the following (sample) program:

class Program
{
    static void Main(string[] args)
    {
        IList<IDerived> derived = null;
        Check(derived);
    }

    static void Check(IList<IBase> base)
    {
    }
}

I'm getting this compliation error: cannot convert from 'System.Collections.Generic.IList<IDerived>' to 'System.Collections.Generic.IList<IBase>'

If I'm trying to pass only one instance, and not a list, it's working, so what am I missing here?

Thanks,

flag

0% accept rate
Isn't base a reserved keyword in c#? – Manticore Sep 8 at 20:37
Not a week goes by on SO where someone doesn't ask a question about covariance. – Steve Guidi Sep 8 at 22:21

5 Answers

vote up 3 vote down

This is due to a lack of covariance on interfaces types in C# 3, C# 4 will allow you to specify covariance and contravariance on interfaces types.

Unfortunately this is one of those things that just doesn't work the way you think it should in C# 3.

link|flag
vote up 3 vote down

You will need to cast the IList items to IBase. Here's an example using Linq extensions:

Check(derived.Cast<IBase>());
link|flag
This seems to work only if I change the "Check" method parameter to IEnumerable<> instead of IList<> (which seems to be a similar issue to the one discussed here...IList<> implements IEnumerable<>). – nirpi Sep 9 at 4:36
Sorry, still early in the morning... Adding ToList() fixed the problem: Check(derived.Cast<IBase>().ToList()); Thanks! – nirpi Sep 9 at 6:15
vote up 2 vote down

This is known as covariance. This should be implemented in c# 4, to an extent.

See: http://stackoverflow.com/questions/245607/how-does-c-4-0-generic-covariance-contra-variance-implmeneted

link|flag
vote up 2 vote down

An instance of IList<IDerived> is not an instance of IList<IBase>. For one thing, you can't call .Add(new ConcreteBase()) on it. (where ConcreteBase implements IBase)

link|flag
calling .Add(new ConcreteBase()) is not the same as passing a "Derived Instance" using a "Base Type" reference. – opc Sep 8 at 20:53
vote up 0 vote down

And yet this would work...

	static void Main(string[] args)
	{
		List<IDerived> derived = null;
		Check(derived.ToArray());
	}

	static void Check(IBase[] asdf)
	{
	}

One of several reasons I prefer the raw array [] or IEnumerable<> for interfaces both on arguments and return values. But if you prefer using List/IList you can still do the following:

	static void Main(string[] args)
	{
		IList<IDerived> derived = null;
		Check(derived);
	}

	static void Check<T>(IList<T> asdf) where T : IBase
	{
	}
link|flag

Your Answer

Get an OpenID
or

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