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
Something like this (if using Linq to objects - it won't work with Linq to entities):
var specificListOfTypes = from item in list where item.GetType() == typeof(int) select item;