Skip to content

Instantly share code, notes, and snippets.

@tatelax
Created August 11, 2022 17:08
Show Gist options
  • Save tatelax/ce8502c55a79d94d43035d1ecfb22bea to your computer and use it in GitHub Desktop.
Save tatelax/ce8502c55a79d94d43035d1ecfb22bea to your computer and use it in GitHub Desktop.
// check for 'real' null
if (ReferenceEquals(obj, null)) {
}
// check for 'real' not-null
if (ReferenceEquals(obj, null) == false) {
}
// check for 'unity' null
if (obj == false) {
}
// check for 'unity' not-null
if (obj) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment