I have a List<> of abstract objects that contains different types of objects. I am trying to grab all the items of a certain type and set th
List<>
Try using Where this way:
Where
var typeAList = myAbstractItems.Where(i => i.GetType() == typeof(itemTypeA)).Select(item => item as itemTypeA).ToList())