dot NET blog
Thursday, October 21, 2010
private static T FindItem
(IEnumerable
list, Predicate
findDelegate) where T: AbstractEntityItem
{
foreach (T item in list)
if (findDelegate(item))
return item;
return null;
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment