Hi,
I got this string array and I have to find out whether a value is inside that array or not. The simplest solution is to use the static method .indexOf()

Array.indexOf(new string[] {"one","two","three"},"two")

Unfortunately, the search seems to be case sensitive, which I don't want. For instance, the value "Two" wont' be found:
Array.indexOf(new string[] {"one","two","three"},"Two")

I need either to make all the elements lowercase, or to perform a search that is case insenstive. How to do this?

Thanks in advance, bye