Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created May 24, 2022 15:51
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 lgolubyev/bc9bd40e3a96b37cc66047e216a003a4 to your computer and use it in GitHub Desktop.
Save lgolubyev/bc9bd40e3a96b37cc66047e216a003a4 to your computer and use it in GitHub Desktop.
public static int CheckSwitch(int[] values)
=> values switch
{
[1, 2, .., 10] => 1,
[1, 2] => 2,
[1, _] => 3,
[1, ..] => 4,
[..] => 50
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment