I have this string array:
string[] stringArray = { \"text1\", \"text2\", \"text3\", \"text4\" }; string value = \"text3\";
I would like to
you can try like this...you can use Array.IndexOf() , if you want to know the position also
string [] arr = {"One","Two","Three"}; var target = "One"; var results = Array.FindAll(arr, s => s.Equals(target));