I tried like following.
MyList.RemoveAll(t => t.Name == \"ABS\"); MyList.RemoveAll(t => t.Name == \"XYZ\"); MyList.RemoveAll(t => t.Name == \"APO\")
If it's not required at any time that there are multiple items in the list, you should consider using a HashSet instead of List
HashSet
List