Skip to content

Instantly share code, notes, and snippets.

@nishanc
Created August 6, 2023 13:41
Show Gist options
  • Save nishanc/d2d140b4d1c9baa4502095e2e788bf44 to your computer and use it in GitHub Desktop.
Save nishanc/d2d140b4d1c9baa4502095e2e788bf44 to your computer and use it in GitHub Desktop.
var result = obj switch
{
int i when i > 0 => "Positive",
int i when i < 0 => "Negative",
_ => "Zero"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment