Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created November 21, 2022 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgolubyev/ade6bf4a11d61735f8e8b4fb4050cc42 to your computer and use it in GitHub Desktop.
Save lgolubyev/ade6bf4a11d61735f8e8b4fb4050cc42 to your computer and use it in GitHub Desktop.
IEnumerable<List<String>> resultSelect = employees.Select(e=> e.Skills);
foreach (List<String> skillList in resultSelect)
{
foreach (string skill in skillList)
{
Console.WriteLine(skill);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment