Advertisement
Guest User

Eric Lippert's challenge - cleanerer

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