Thursday, October 6, 2016

Generic extension method for traversing object graphs

  1. public static IEnumerable Traverse(this T root, Func> getChildren)
  2. {
  3. return Enumerable.Repeat(root, 1)
  4. .Concat((getChildren(root) ?? Enumerable.Empty())
  5. .SelectMany(child => Traverse(child, getChildren)));
  6. }

No comments: