Advertisement
Guest User

Eric Lippert's challenge - cleaner

a guest
Sep 10th, 2010
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.63 KB | None | 0 0
  1. sealed class Dumper
  2. {
  3.     static public string Dump(Node root)
  4.     {
  5.         return root.Text + "\n" + DumpChildren( root, "" );
  6.     }
  7.     static private string DumpChildren(Node node, string indent)
  8.     {
  9.         return node.Children.Count == 0
  10.             ? "" : node.Children.Take(node.Children.Count - 1).
  11.                         Aggregate(string.Empty, (results, child) =>
  12.                             results + indent + "├─" + child.Text + "\n" + DumpChildren(child, indent + "│ ") )
  13.                     + indent + "└─" + node.Children.Last().Text + "\n" + DumpChildren(node.Children.Last(), indent + "  " );
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement