Âż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++; } } } }