If you are using .net 3.5 this can be done with Linq to Objects:
http://msdn.microsoft.com/en-us/library/bb397937.aspx
If not, in 2.0 you can use Find method of the list:
http://msdn.microsoft.com/en-us/library/x0b5b5bc.aspx
The idea is that you will need to provide an method that return true if a property of your object satifies a certain condition.