Foo myFoo = foos.Find(delegate(Foos e) { return e.PropertyName == "whatever"; });
Friday, July 9, 2010
Find() in a Generic List
List = new List(id);
Foo myFoo = foos.Find(delegate(Foos e) { return e.PropertyName == "whatever"; });
Foo myFoo = foos.Find(delegate(Foos e) { return e.PropertyName == "whatever"; });
Subscribe to:
Posts (Atom)