#151 – Determining Whether an Array Contains a Specific Element
November 15, 2010 Leave a comment
You can use the Array.Find method to find a particular element in an array. If, however, you only care whether a particular element is present in an array, you can use the IEnumerable.Contains method. The Contains method returns true if the element was found in the array, false if not.
int[] scores = { 89, 98, 72, 100, 83 }; bool someoneAcedIt = scores.Contains(100); // true
Contains also works on arrays holding objects belonging to a custom type.
Person[] folks = new Person[3]; folks[0] = new Person("Bronte", "Emily", 29); folks[1] = new Person("Bronte", "Charlotte", 31); folks[2] = new Person("Tennyson", "Alfred", 24); bool foundAlfred = folks.Contains(new Person("Tennyson", "Alfred", 24));
This will only work as expected if the underlying type has implemented the equality operator in a way that properly compares two objects to determine if they are equal. If the equality operator has not been defined, only the references to the objects will be compared, rather than the contents of the objects.