I created an arraylist of Student type. Student has name, subject information in it. Suppose my ArrayList has values like (sam, maths), (john, english), (mat, science). If i want to find out which student has science stream, then how to search it in an ArrayList.
I think it may be done by using binarysearch or indexof methods, but not getting it right.
ArrayListis an array of? – naveen Aug 14 '11 at 7:41var results = albums.FindAll(a => a.artist == txt || a.tag == txt);if you want only the first or last result just replace 'FindAll' with the 'First' or 'Last' method – mmorel Aug 16 '11 at 7:16