I have this string array:
string[] stringArray = { \"text1\", \"text2\", \"text3\", \"text4\" }; string value = \"text3\";
I would like to
string[] strArray = { "text1", "text2", "text3", "text4" }; string value = "text3"; if(Array.contains(strArray , value)) { // Do something if the value is available in Array. }