Steven Spielberg
Steven Spielberg

Reputation:

How to remove stuff from a list in C#?

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

Answers (2)

tster
tster

Reputation: 18257

list = list.Where(item => item.id != 55).ToList();

Upvotes: 0

Quartermeister
Quartermeister

Reputation: 59179

To remove everything with an ID of 55:

List<Structure> list;
list.RemoveAll(structure => structure.ID == 55);

Upvotes: 8

Related Questions