Skip to content

Instantly share code, notes, and snippets.

@jbevain
jbevain / gist:647076
Created October 26, 2010 15:14
Node dumper using y combinator
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
class Node {
public string Text { get; private set; }
public IList<Node> Children { get; private set; }