vote up 0 vote down star

Hello

I'm trying to do the following:

List<IRepository<IBusinessObject, ICriteria>> Repositories { get; }

and call this by

IRepository<ICustomer, ICustomerCriteria> cr = new CustomerRepository();

List.Add(CustomerRepository);

where ICustomer and ICustomerCriteria descend from IBusinessObject and ICriteria respectively.

However, this is not liked by the compiler.

Hmmm, I know I'm pushing it a bit, but I thought this would work? Anyone know why?

Thanks Duncan

flag

60% accept rate

2 Answers

vote up 1 vote down check

This is a generic variance problem:

This will illustrate the issue:

List<string> Strings = ...;
List<object> Objects = Strings; // Should work

Objects.Add(42); // 42 is an object - Should work
// But we would add an integer into a list of strings!!

In .NET FX 4, C# will support a special kind of in and out generic parameters to allow correct behavior.

link|flag
Okay, but my object graph is sound - ICustomer descends from IBusinessObject, so I still don't see the problem! Hmmm... any recommended workarounds then? – Duncan Jul 23 at 13:47
But you could add an ICompletelyDifferentCriteria into your list of ICustomerCriteria since both inherited ICriteria. – Dario Jul 23 at 14:26
vote up 3 vote down

C# doesn't support covariance for generics. Consider this Covariance and Contravariance in C#, Part One

link|flag

Your Answer

Get an OpenID
or

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