Skip to content

Instantly share code, notes, and snippets.

@loudej
Created September 19, 2009 23:49
Show Gist options
  • Save loudej/189635 to your computer and use it in GitHub Desktop.
Save loudej/189635 to your computer and use it in GitHub Desktop.
void DoSomethingToNode(BindingNode node)
{
switch (node)
{
case<BindingLiteral> foo:
foo.LiteralText += "blah";
break;
case<BindingNameReference> bar:
break;
case<BindingPrefixReference> foo:
break;
default:
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment