Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created November 7, 2019 03:39
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 IntegerMan/e5b9550b9c5e0aa9ce186d075ab10a52 to your computer and use it in GitHub Desktop.
Save IntegerMan/e5b9550b9c5e0aa9ce186d075ab10a52 to your computer and use it in GitHub Desktop.
// Old Way
if (deathRay) {
deathRay.FireAt(target);
}
// New Way
deathRay?.FireAt(target);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment