Skip to content

Instantly share code, notes, and snippets.

@controlflow
Created January 3, 2020 22:56
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 controlflow/b53d28ed8fac9429ad031215db39f358 to your computer and use it in GitHub Desktop.
Save controlflow/b53d28ed8fac9429ad031215db39f358 to your computer and use it in GitHub Desktop.
var str = obj as string;
if (str != null) {
WriteLine(str.Length);
}
if (obj is string str) {
WriteLine(str.Length);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment