The Array class already contains this capability with no casting required. The IndexOf method is a static one that returns the index of the value and a -1 if it doesn't exist.
Array
IndexOf
static
-1
Here is an example:
exists = Array.IndexOf(arr, "item") >= 0
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)