I tried like following.
MyList.RemoveAll(t => t.Name == \"ABS\"); MyList.RemoveAll(t => t.Name == \"XYZ\"); MyList.RemoveAll(t => t.Name == \"APO\")
A more extnsible approach would be to have a List for what to remove then
List toRemove = ... MyList.RemoveAll(t => toRemove.Contains(t.Name));
where T is a string in your example