[Solved] C# Enumerable yield and foreach [closed]


You need two nested foreach loops. One iterates the ebles the inner one the elements in each list. The innermost loop contains a yield return element;

This is the outline. Now go and read about each of the words mentioned in this outline.

solved C# Enumerable yield and foreach [closed]