This page contains general information regarding the use and structuring of enums in C#
Enums are generally used to create a type of named constant
which are framed in a type
Example of an Enum:
public class EnumTest //Here we create a method to later call the enum named `Days`
enum Days { Sun, Mon, Tue, Wed, Thu, Fri Sat}
Just like Arrays, Enums first index number is 0. eg in the example above. Sunday would have an index value of 0
In fact. Enums are basically Arrays but rather than holding variables they hold constants