Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Use a singular name for most Enum types, but use a plural name for Enum types that are bit fields.
public enum Action { Stop = 0, Start = 1, Continue = 2 };
public enum Actions { KillNow = 1, PreserveOptions = 2, LogError = 4 };