Tagged Questions
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 ...