Q:

c# ienumerable wrap to know when its compltee

IEnumerable<string> names = GetNames();
foreach (var name in names)
    Console.WriteLine("Found " + name);
var allNames = new StringBuilder();
foreach (var name in names)
    allNames.Append(name + " ");
0

Tags

New to Communities?

Join the community