Skip to content

Instantly share code, notes, and snippets.

@unitycoder
Created November 8, 2015 21:36
Show Gist options
  • Save unitycoder/491d9fdf6c2111803b40 to your computer and use it in GitHub Desktop.
Save unitycoder/491d9fdf6c2111803b40 to your computer and use it in GitHub Desktop.
Disable unused variable warnings
// Add warning number after the disable (can see the error code from the console output)
// examples:
#pragma warning disable 0168 // variable declared but not used.
#pragma warning disable 0219 // variable assigned but not used.
#pragma warning disable 0414 // private field assigned but not used.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment