DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Simple Filter Using LINQ
// description of your code here
string[] names = { "T", "D", "H" };
IEnumerable<string> filteredNames =
System.Linq.Enumerable.Where (names, n => n.Length >= 4);
foreach (string n in filteredNames)
Console.Write (n + "|");code>




