In the Debugging Tools module of the Realm Rush tutorial, Gary used the following to toggle the enabled state of the label:
label.enabled = !label.IsActive();
I was wondering why IsActive() is used rather then the following:
label.enabled = !label.enabled;