public static void Main()
string[] words = {"Burger", "Chicken", "Soda", "Almonds", "Honey"};
LinkedList<string> list = new LinkedList<string>(words);
Console.WriteLine("Enter a product to find");
Console.WriteLine("Type <end> to end the program");
string searchText = Console.ReadLine();
while (searchText != "<end>")
if (list.Contains(searchText))
Console.WriteLine("The search text was found");
Console.WriteLine("The search text was NOT found");
Console.WriteLine("Please enter a product to find");
Console.WriteLine("Type <end> to end the program");
searchText = Console.ReadLine();