Skip to content

Instantly share code, notes, and snippets.

@musicm122
Created July 27, 2014 23:43
Show Gist options
  • Save musicm122/cb785db290c889a1367b to your computer and use it in GitHub Desktop.
Save musicm122/cb785db290c889a1367b to your computer and use it in GitHub Desktop.
node3
public static Node GetRightMostNode(Node node)
{
while(node.Value!=null)
{
node = node.MoveRight();
}
return node;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment