diff --git a/Features/Program.cs b/Features/Program.cs index 8e3bdea..744102c 100644 --- a/Features/Program.cs +++ b/Features/Program.cs @@ -1,6 +1,7 @@ using System; using System.Collections; using System.Collections.Generic; +using System.Linq; namespace Features { @@ -33,6 +34,11 @@ namespace Features { Console.WriteLine(); } + + foreach (var employee in developers.Where(x => x.Name.StartsWith("S"))) + { + Console.WriteLine(employee.Name); + } } } } \ No newline at end of file