Skip to content

Instantly share code, notes, and snippets.

@musicm122
Created July 27, 2014 23:44
Show Gist options
  • Save musicm122/a10db3a3cdccc3431bf5 to your computer and use it in GitHub Desktop.
Save musicm122/a10db3a3cdccc3431bf5 to your computer and use it in GitHub Desktop.
node4
public static string GetValues(Node node)
{
StringBuilder sb = new StringBuilder();
while (node.Value!=null)
{
sb.Append(node.Value);
node = node.Right;
}
return sb.ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment