Skip to content

Instantly share code, notes, and snippets.

@unitycoder
Created September 2, 2015 20:45
Show Gist options
  • Save unitycoder/407d9929d19c475c17ba to your computer and use it in GitHub Desktop.
Save unitycoder/407d9929d19c475c17ba to your computer and use it in GitHub Desktop.
Public Static Get Set property
static int _myNumber;
public static int MyNumber
{
get
{
// add custom logic here when value is queried
return _myNumber;
}
set
{
// add custom logic here when value is changed
_myNumber = value;
}
}
// call from separate script: ClassName.MyNumber++;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment