Skip to content

Instantly share code, notes, and snippets.

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