var dnf = new List<string>() { "Dot", "Net", "Funda" };foreach (string name in dnf ){ if (name == "Funda") { continue; } Console.WriteLine(name);}
Login to post response