Reputation:
I have a list of structs:
list<structure>;
But I want to remove the specific stuff by ID.
Example: item with ID 55.
So how I can reomve a stuff from list?
I have an ID in the struct as public string stuffID;
How can I do this?
Upvotes: 2
Views: 765
Reputation: 59179
To remove everything with an ID of 55:
List<Structure> list;
list.RemoveAll(structure => structure.ID == 55);
Upvotes: 8