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
maybe you could use ...
List list = new List(); list.Add("string"); list.Add(9); var allOfOneType = list.Where(i => i.GetType().Equals(typeof(string)));