Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created November 21, 2022 17:00
Embed
What would you like to do?
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