Skip to content

Instantly share code, notes, and snippets.

@controlflow
Created October 25, 2016 14:52
Show Gist options
  • Save controlflow/8a51ab838dd58dd60290d4bcb5e74c1f to your computer and use it in GitHub Desktop.
Save controlflow/8a51ab838dd58dd60290d4bcb5e74c1f to your computer and use it in GitHub Desktop.
var s = x as string;
if (s == null) {
s = DefaultValue();
}
Console.WriteLine(s);
// ==>
if (!(x is string s)) {
s = DefaultValue();
}
Console.WriteLine(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment