Check out example codes for "c# search string array". It will help you in understanding the concepts better.
Code Example 1
string [] arr = {"One","Two","Three"};
var target = "One";
var results = Array.FindAll(arr, s => s.Equals(target));
Learn ReactJs, React Native from akashmittal.com