public static void Main()
string[] names = { "Joe", "Jack", "Bob", "Larry", "Alpha", "Mick", "Lance", "Ben" };
string redlight ="Larrsy";
if (names.Contains(redlight))
Console.WriteLine("It's in the array");
Console.WriteLine("It's not in the array");
Console.WriteLine("Alternate with Any");
if (names.Any(x=>x==redlight))
Console.WriteLine("It's in the array");
Console.WriteLine("It's not in the array");