vote up 1 vote down star

Due to the lack of generic variance in the .NET framework, is it more "correct" to have methods that handle the non-generic versions of the System.Collection interfaces, if the methods are being designed to handle multiple types?

Ideally, once moved to .NET 3.5, the code would modified to change these methods into extension methods.

flag

20% accept rate

4 Answers

vote up 1 vote down

In this case (IEnumerable), implementing the generic version is better, as it derives from IEnumerable (non-Generic), so it becomes a moot point, both are available to you.

link|flag
vote up 1 vote down

No, the more "correct" thing to do is to make the methods that handle multiple types generic themselves.

link|flag
Yes precisely. See System.Linq.Enumerable.Select for an example. – David B Sep 30 '08 at 14:19
vote up 0 vote down

Here is a decent article explaining it.

The only solution that I can see is to follow the advice of the article, and make the method a generic method as well.

But, I am not sure how well it will stand up to being an extension method.

link|flag
vote up 0 vote down

Define "Multiple types" do you mean, for example, a List that contains both Cars and Dogs? Or one List that contains Cars and another that contains Dogs? Unless you're doing something "special" I'd say the correct thing to do is to implement the Generic version and not the non-generic version.

link|flag

Your Answer

Get an OpenID
or

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