Skip to content

Instantly share code, notes, and snippets.

@SteveDunn
Last active June 25, 2017 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SteveDunn/c7180f57adb98a946dd70e5de9cef5c8 to your computer and use it in GitHub Desktop.
Save SteveDunn/c7180f57adb98a946dd70e5de9cef5c8 to your computer and use it in GitHub Desktop.
public static void Branch(this bool @bool, Action left, Action right)
{
if (@bool)
{
left();
}
else
{
right();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment