Enum
Enums, short for "enumerations," are a fundamental data type in C#. They allow you to define a named set of constant values representing distinct integer values. Enums are often used to make code more readable and maintainable by providing meaningful names for numeric constants.
Declaring an Enum
You can declare an enum using the enum
keyword in C#. Here's the basic syntax:
In this example, we've defined an enum called DaysOfWeek
with seven named constants. By default, the underlying values are assigned starting from 0 and incrementing by 1 for each subsequent element. So, Sunday
is assigned a value of 0, Monday
is 1, and so on.
Explicit Enum Values
You can assign specific integer values to enum members if needed:
In this example, we've assigned custom values to each day of the week.
Using Enums
Once you've defined an enum, you can use it in your code. For example, you can declare variables of the enum type and assign enum values to them:
You can also use enums in switch statements to make your code more readable:
Converting Enums
You can convert between enum values and their underlying integer values using casting:
Enums are a useful feature in C# for improving code clarity, reducing the risk of errors, and making your code more maintainable by using meaningful names for constant values.
Last updated
Was this helpful?