using System.Collections.Generic;
public List<int> Id { get; set; }
public int Id { get; set; }
public string description {get; set; }
public static void Main()
aaa.Id = new List<int>();
List<BBB> bbb = new List<BBB>();
bbb.ForEach(i => Console.WriteLine("{0},{1}",i.Id, i.description ));
var nowe = bbb.FindAll(x => x.description != "ME");
nowe.ForEach(i => Console.WriteLine("{0},{1}",i.Id, i.description ));