Tagged Questions

5
votes
2answers
109 views

How to filter to all variants of a generic type using OfType<>

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 ...
4
votes
3answers
3k views

LINQ: From a list of type T, retrieve only objects of a certain subclass S

Given a simple inheritance hierarchy: Person -> Student, Teacher, Staff Say I have a list of Persons, L. In that list are some Students, Teachers, and Staff. Using LINQ and C#, is there a way I ...
2
votes
1answer
183 views

Linq - OfType<> not working as expected

I have the following code which detects all the elements in a Silverlight application beneath a certain point then filters them to be only those of a particular type - CardButton ...
2
votes
1answer
296 views

How Does Queryable.OfType Work?

Important The question is not "What does Queryable.OfType do, it's "how does the code I see there accomplish that?" Reflecting on Queryable.OfType, I see (after some cleanup): public static ...
0
votes
2answers
247 views

List.OfType() speed, alternative data structures

Take a look at this code. interface ILoader { } interface ILoader<T>: ILoader { T Load(); } class CarLoader: ILoader<Car> { ... } class TrainLoader: ILoader<Train> { ...