vote up 1 vote down star
1

Hi folks,

i have an IList<Animals> farmAnimals;

this list has three types,

  • Cows
  • Sheep
  • Chickens

how can i remove all the Chickens from the list using a lambda query or linq-to-objects so i have a separate list of chickens and the original list now only has cows and sheep.

Do i have to make three lists (the original + 2 new ones, filtered) and then null the original list? or is there a trickier way?

result needs to be

IList<Aniamls> chickens;
IList<Animals> farmAnimals; // only contains the cows and sheep, now.

cheers!

CLARIFICATION QUESTION:

what is more performant? FindAll & RemoveAll versus the Where suggestion?

flag

75% accept rate

4 Answers

vote up 2 vote down check

Assuming:

public abstract class Animal {}

public class Chicken : Animal {}

you can do:

var chickens = animals.OfType<Chicken>().Cast<Animal>().ToList();

var nonChickens = animals.Except(chickens).ToList();

Edit

Any reasonable answer should be O(n), meaning each item in the original list is only processed once. Therefore, I would suggest an imperative approach:

var chickens = new List<Animal>();
var nonChickens = new List<Animal>();

foreach(var animal in animals)
{
    var list = animal is Chicken ? chickens : nonChickens;

    list.Add(animal);
}
link|flag
now THAT's kewl! – Pure.Krome Jan 14 at 1:52
are there any performance differences between Except vs RemoveAll and OfType+Cast vs FindAll ? – Pure.Krome Jan 14 at 2:01
vote up 2 vote down
var chickens = farmAnimals.ToList().FindAll (c => c.Type == "Chicken");
farmAnimals.RemoveAll(a => a.Type=="Chicken");
link|flag
or c => c is Chickens – Ray Jan 14 at 1:38
Doesn't RemoveAll returns an int? is that the number of items LEFT or REMOVED? i also prefer 'is' over .Type == 'blah'. – Pure.Krome Jan 14 at 1:40
Actually RemoveAll does not return a collection, it returns the number of items removed. – Tim Jarvis Jan 14 at 1:41
hmm, c is your Animal class c.Type is Animal.Type is this what did you ask ? – Barbaros Alp Jan 14 at 1:42
nope. c => c is Chicken is correct, becuase Chicken : Animal (chicken inherits animal). – Pure.Krome Jan 14 at 1:44
show 5 more comments
vote up 1 vote down
var chickens = farmAnimals.Where(a => a.GetType() == typeof(Chicken)).ToList();
farmAnimals = farmAnimals.Where(a => a.GetType() != typeof(Chicken)).ToList();
link|flag
interesting use of Where. maybe replace the typeof checks with an 'is' check. – Pure.Krome Jan 14 at 1:41
i like it, great – Barbaros Alp Jan 14 at 1:46
vote up 0 vote down

var Chickens = farmAnimals.FindAll(a=>a is Chicken);

I have a terrible tendency to sway to the simplest solution possible. In this case, using the lambda only requires the .NET framework 2.0. The LINQ extension methods require 3.5.

link|flag
I think you need C# 3.0 for Lambdas, not 2.0. – silverCORE Aug 9 at 17:33
Correct, Language Specification 3.0 - but it will compile and run on Framework 2.0 and does not require Framework 3 or 3.5. – Robert Venables Aug 9 at 17:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.