Skip to content

Instantly share code, notes, and snippets.

@Sambardo
Created February 28, 2018 19:08
Show Gist options
  • Save Sambardo/10d1611010703814ab4357b8be249957 to your computer and use it in GitHub Desktop.
Save Sambardo/10d1611010703814ab4357b8be249957 to your computer and use it in GitHub Desktop.
Sample for blog post
int i = 1;
switch (i)
{
case 1:
Console.WriteLine("One");
break;
case 2:
Console.WriteLine("Two");
Console.WriteLine("Two");
break;
default:
Console.WriteLine("Other");
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment