¿Cómo podría hacer para que solo me muestre "No match" una solo vez después de recorrer todo el arreglo?
using System; using System.Collections.Generic; namespace Code_Coach_Challenge { class Program { static void Main(string[] args) { string[] words = { "home", "programming", "victory", "C#", "football", "sport", "book", "learn", "dream", "fun" }; string letter = Console.ReadLine(); int count = 0; //tu código va aquí foreach(string x in words){ if(words[count].Contains(letter)) Console.WriteLine(words[count]); else Console.WriteLine("No match"); count++; } } } }