I want to filter objects in a List<ISeries> using their type, using OfType<>. My problem is, that some objects are of a generic interface type, but they do not have a common inherited interface of their own.

I have the following definitions:

public interface ISeries
public interface ITraceSeries<T> : ISeries
public interface ITimedSeries : ISeries
//and some more...

My list contains all kinds of ISeries, but now I want to get only the ITraceSeries objects, regardless of their actually defined generic type parameter, like so:

var filteredList = myList.OfType<ITraceSeries<?>>(); //invalid argument!

How can I do that?

An unfavored solution would be to introduce a type ITraceSeries that inherits from ISeries:

public interface ITraceSeries<T> : ITraceSeries

Then, use ITraceSeries as filter. But this does not really add new information, but only make the inheritance chain more complicated.

It seems to me like a common problem, but I did not find useful information on SO or the web. Thanks for help!

link|improve this question

2  
Think about what the return type of myList.OfType should be. – R. Martinho Fernandes May 20 '11 at 11:38
It should be IEnumerable<ISeries>. But this is a good point, how to tell that to the OfType<> method!? – Marcel May 20 '11 at 11:41
1  
The return type of OfType is the same as the type parameter. – R. Martinho Fernandes May 20 '11 at 11:44
@Martinho Nit: it returns an IEnumerable of the type parameter – sehe May 20 '11 at 12:13
feedback

2 Answers

up vote 3 down vote accepted
var filteredList = myList.Where(
    x => x.GetType()
          .GetInterfaces()
          .Any(i => i.IsGenericType &&
                    (i.GetGenericTypeDefinition() == typeof(ITraceSeries<>)));
link|improve this answer
Great stuff! However, I thought, I could reduce complexity... Now my complexity is hidden in a remote space, not in the inheritance structure! :-) – Marcel May 20 '11 at 12:32
Can you tell me what typeof(ITraceSeries<>) actually returns as type? As far as I know, generic typed classes do not share a common base class. (This was my source of trouble in the first place) – Marcel May 20 '11 at 12:36
@Marcel: typeof(ITraceSeries<>) returns an open generic type for ITraceSeries<T>. You cannot declare objects of that type, but you can use that to make closed types like ITraceSeries<string>. – R. Martinho Fernandes May 20 '11 at 13:39
3  
@Martinho: Just to be picky, technically typeof<I<>> is better characterized as an unbound generic type. Whether a type is open or closed depends on whether it has any unsubstituted type parameters in it; for example, I<T[]> is bound but open. I<int[]> is bound and closed, I<> is unbound. – Eric Lippert May 20 '11 at 14:14
feedback
from s in series
where s.GetType().GetGenericTypeDefinition()==typeof(ITraceSeries<>)
select s;
link|improve this answer
Good idea, but it won't work exactly like that because typeof(ITraceSeries<string>) != typeof(ITraceSeries<>). Fixed it. – R. Martinho Fernandes May 20 '11 at 11:42
:-) Much of the answers is just ideas - direction to the right solution. Thanks for correction. – VikciaR May 20 '11 at 11:48
@Martinho: That still won't work because GetType will return a concrete, runtime type and that type will never be ITraceSeries<something>, it'll be a concrete implementation of ITraceSeries<something>. See my answer for a solution that should, hopefully meet the OP's requirements. – LukeH May 20 '11 at 11:50
@Luke: oh good point. – R. Martinho Fernandes May 20 '11 at 11:50
feedback

Your Answer

 
or
required, but never shown

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