Skip to content

Instantly share code, notes, and snippets.

@DavidArno
Created August 2, 2018 11:56
Show Gist options
  • Save DavidArno/ff9f08392988dab2ca1e5ba1d87d684d to your computer and use it in GitHub Desktop.
Save DavidArno/ff9f08392988dab2ca1e5ba1d87d684d to your computer and use it in GitHub Desktop.
Switch expression example
public class C
{
RedisValue ToRedisValue(object obj)
{
return obj switch
{
null => Null,
RedisValue v => v,
string v => (RedisValue)v,
int v => v,
double v => v,
byte[] v => (RedisValue)v,
// ...
_ => Null
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment