Is there a way to find in a List all items of a certain type with a Linq/Lambda expression?
Update: Because of the answers, I realize the question wasn\'t specific e
Use OfType like so:
OfType
foreach (var bar in MyList.OfType()) { ... }