How to Use Enums in CSharp – Understanding the Basics

An enum (short for Enumeration) is a group of named constants in C# that represent fixed values. Enums can be used to create a set of named constants that can be referenced easily, making code more organized and readable. Enum values are integer-based, and every individual enum value has its unique integer equivalent. Learning how to use Enums in CSharp can be very helpful as they help developers write clean, maintainable code.

Understanding Enums is useful for software engineers because they provide a convenient mechanism to represent data, and doing so appropriately can lead to better and more efficient systems. By learning about enums, software engineers can ensure that their code is clean, organized, and easy to understand. Understanding how to use enums in CSharp also helps avoid their misuse!

Let’s dive into how to use enums in CSharp!

Core Concepts of Enums

In C#, enums or enumerations represent a set of named constants or values, similar to a regular variable, but with a predefined range of possible values. Enums are used to assign symbolic names to a set of constant values that will remain fixed throughout the program. This may allow for cleaner, more maintainable code and reduce the chance of coding errors. If we use them properly!

And to help you out, alongside this article, I put together this video on the basics for how to use enums in CSharp:

YouTube player

Declaration and Initialization of Enums

To declare an enum, begin with the enum keyword, followed by the name of the enum, and then a set of constant values enclosed in curly brackets. A comma separates each value, and a semicolon is used to terminate the list. Below is an example of an enum for days of the week:

enum DayOfWeek
{
    Monday,
    Tuesday,
    Wednesday,
    Thursday,
    Friday,
    Saturday,
    Sunday
};

To initialize and assign a value to an enum variable, reference the name of the enum value. For example, to initialize an enum variable for Monday, we would use:

DayOfWeek currentDay = DayOfWeek.Monday;

Enum Members and Values

Each enum member has an automatically assigned integer value; by default, the integer values start at zero and increment by 1, but you can specify any valid integral value explicitly. In the example enum above, Monday is assigned the value 0, Tuesday 1, and so on. This behavior can be changed by using an equal sign and specifying the value of the member. For example:

enum DayOfWeek
{
    Monday = 1,
    Tuesday = 2,
    Wednesday = 3,
    Thursday = 4,
    Friday = 5,
    Saturday = 6,
    Sunday = 7
};

In the explicit value initialization above, Monday is now assigned the value 1, not 0, Tuesday is 2, and so on.

Using Enums in Switch Statements

Using switch statements to evaluate the value of an enum variable can make your code much more efficient, readable, and maintainable. Below is an example of using a switch statement to determine the current day of the week:

switch (currentDay)
{
    case DayOfWeek.Monday:
        Console.WriteLine("Monday");
        break;
    case DayOfWeek.Tuesday:
        Console.WriteLine("Tuesday");
        break;
    case DayOfWeek.Wednesday:
        Console.WriteLine("Wednesday");
        break;
    case DayOfWeek.Thursday:
        Console.WriteLine("Thursday");
        break;
    case DayOfWeek.Friday:
        Console.WriteLine("Friday");
        break;
    case DayOfWeek.Saturday:
        Console.WriteLine("Saturday");
        break;
    case DayOfWeek.Sunday:
        Console.WriteLine("Sunday");
        break;
}

And sure, I get it. The example above isn’t stellar because the actual string value representing the name of the enum is what we want printed out. But it’s important to keep in mind the names of your enums are not always going to be exactly end-user-friendly. And if you still don’t want to believe me, just consider a situation

ToString and Back Again

This is a fun one, considering an enum gives us what appears to be a string representation and a numerical representation. The reality is, it’s purely numerical but we have readability as developers. But… it often leads us to want to go back and forth between numeric and string values.

While there are some obvious things we can do, including built-in static methods on the Enum class to get names, there are conflicting opinions on the best ways to go about this. I guess we shouldn’t be shocked at this point that people on the Internet disagree! Here’s a Stack Overflow conversation about string representations of enums – look at the variety!

What’s the *best* way? I don’t believe in universal bests. So have a skim through that and see if there are variations that suit your needs since each will have pros and cons. I’m happy to discuss your thoughts in the comments! You can watch this video on string parsing for some basic examples:

YouTube player

Limitations of Enums

Although enums can make your code cleaner and more maintainable, they also come with limitations. One major issue with enums is the fact that they have a fixed set of possible values. This means that, once the enum is defined, you cannot add or remove values from the enum without modifying the entire codebase.

In addition, enums are not typesafe, making them inherently more prone to errors than other data types. Even if your enum range had four entries with values 0, 1, 2, 3, you’re totally able to cast the value 123 to the enum and it just… works? Finally, enums can only be used with integral types, which can be limiting in certain scenarios.

To avoid issues arising from these limitations, it’s important to carefully consider the use of enums in particular scenarios, especially in larger projects where maintainability is a concern. However, with proper usage, enums can be an incredibly powerful tool in C# programming.


Best Practices for How to Use Enums in CSharp

As with any programming concept, there are several best practices associated with using enums effectively. In this section, we’ll go over some of the top best practices for enums in C# that’ll help you write clean and quality code.

Naming Conventions for Enums

When it comes to naming enums, it’s essential to use meaningful and descriptive names that convey the values they represent. It’s a best practice to name your enums in the singular form and begin them with a capital letter.

enum Color { Red, Green, Blue }

We’ll see a little bit later a variation of enums called “flags”, and naming these as plural is generally considered to be the best practice.

Initialization of Enum Values

Enum values are automatically assigned, starting at zero and then and then incrementing by one, based on their order. That is, the very first enum entry defined will have a numeric value of zero, the next one, and so on. You can also assign your own values explicitly to enums by using an assignment directly in the declaration:

enum DayOfWeek { Monday = 1, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday };

Tips for Using Enums in Switch Statements

Using a switch statement with an enum variable as an argument can be a powerful way to write focused code. However, it’s essential to include a default case for the switch statement to handle unexpected input.

switch (day)
{
    case DayOfWeek.Monday:
        Console.WriteLine("Today is Monday.");
        break;
    case DayOfWeek.Tuesday:
        Console.WriteLine("Today is Tuesday.");
        break;
    default:
        Console.WriteLine("Invalid input.");
        break;
}

Pitfalls in Using Enums

While using enums comes with a ton of benefits, it’s essential to be cautious of some associated pitfalls to avoid issues in your code. One of the primary pitfalls of using enums is that enums can become unwieldy, cluttered, and difficult to maintain if they’re not correctly organized or categorized. I believe one of the root causes of this is using enums to define a non-fixed collection of things.

If we take, for example, something like the days of the week – this is fixed. We have 7 total days in a week. Representing this with an enum means that we have a total of 7 states to be defined and this will be fixed in place. You may have state machines with a fixed number of states as well. However, if you are using enums to create a list of things that can continue to grow… you’re probably going to run into some headaches.

Consider all of the spots in your codebase that are trying to handle all of the cases for enum values. Sure, you can use else blocks and switch statements with a default so things don’t just explode… but does that actually guarantee the expected behavior? If you can continue to modify enums by extending them, the side effect is that all of the spots consuming the enum need some consideration.

Try to ask yourself if your enum represents a finite number of things. If not – an enum may not be the right tool for you, even if it feels like having a string/integer mapping is convenient. This video should help guide you through some considerations with Enum usage:

YouTube player

Advanced Features of Enums in C#

Enums in C# have advanced features as well, which provide more flexibility and power to developers. In this section, we explore some of these advanced features.

Combining Enums

Sometimes, we may need to combine two or more enums in C#. This can be achieved with the “Flags” attribute. It allows us to assign multiple values to a single variable. With respect to naming conventions for flag-enums, it’s generally considered best practice to be of plural form.

To use the “Flags” attribute, we need to declare it before the enum:

[Flags]
enum MyCustomEnumOptions
{
    Option1 = 1,
    Option2 = 2,
    Option3 = 4,
    Option4 = 8
}

Here, we have declared an enum with four options and each option has a value that is a power of two. If we want to combine Option1 with Option2, we can do it like this:

MyCustomEnumOptionsoptions =
    MyCustomEnumOptions.Option1 |
    MyCustomEnumOptions.Option2;

Check out this video to see more details on how flag Enums work:

YouTube player

Using Attributes in Enums

Attributes can be used with enums just like any other class or struct. We can set attributes on the enum as well as on individual members of the enum. We can use attributes to store metadata about the enum or its members.

Attributes can be used for many purposes, such as validation, documentation, and serialization. The following example demonstrates the usage of attributes with enums:

public enum PersonGender
{
    [Description("Female")]
    Female,
    [Description("Male")]
    Male,
    [Description("Other")]
    Other
}

Here, we set the Description attribute for each member to store how we want to present the data to the user. This attribute can then be used for validation or serialization purposes in the code.

Using these advanced features of enums can significantly enhance the power and flexibility of our C# code.


Benefits of Using Enums in C#

When it comes to programming in C#, enums can be an important tool to have in your arsenal. These enumerations can provide benefits that range from clean, maintainable code to improved coding consistency.

First and foremost, using enums can result in code that is easier to understand and maintain. When the values of an enum are utilized throughout a software application, it becomes easier to trace dependencies, which makes the code more readable and straightforward. Furthermore, enums can help to reduce coding errors by ensuring that values used in the code are within a specific range or domain.

In addition, the use of enums can help with code comprehension. As developers build up more experience in programming, they start to realize that much of their code falls within a set of related values. By utilizing enums to define these related sets of values, developers can simplify their code and make it easier to read and maintain.

Finally, the use of enums can help with code consistency. If, for example, you have multiple developers working on the same codebase, enums can provide guidelines for the acceptable values in the code. This, in turn, makes it easier for developers to adhere to conventions and rules established within the particular codebase.

Overall, the benefits of using enums in C# programming cannot be overstated. Their ability to increase readability, reduce coding errors, and provide improved code consistency makes them a fundamental aspect of any C# developer’s toolkit.


Real World Examples of How to Use Enums in CSharp

Enums are a valuable tool that can simplify and organize code in a variety of software applications. Their functionality can be seen in numerous programming use cases and real-world examples – even if sometimes folks are misusing them. Here are some practical applications of enums that can help illustrate how they are used in a real-world environment.

Representing Game States

Depending on the game you’re working with, enums can be useful for representing the state of the game. Many games have state machines where each state can map to an enum. This can be a great fit when the states are finite given a set of rules. You could consider something like chess where we could map some finite game states to an enum:

public enum GameState
{
    Normal,
    Check,
    Checkmate,
    Stalemate
}

Of course, there are multiple board layouts that can represent these states… But these are states that the game could be in at any given point in time.

Warehouse Locations

Let’s consider something more physical! If we were writing software for a specific set of warehouses with fixed layouts, we could leverage enums to help us better understand where things are located. And yes, the thought of writing code for some specific buildings with specific layouts does irk me a little bit… But I think it can help demonstrate where we want a programmatic value and something developer-friendly to understand where things are located:

public enum WarehouseLocation
{
    Warehouse1_Aisle1,
    Warehouse1_Aisle2,
    Warehouse2_Aisle1,
    Warehouse2_Aisle2
}

If it’s not common to be adding new warehouses or re-arranging the aisles in the warehouses… this could technically be a helpful fit. However, if this software was intended to scale to a company that could be adding/removing warehouses and changing layouts – what then? Personally, I think the enum’s usefulness starts to fall down pretty quickly because it goes back to the primary pitfall mentioned earlier. If you aren’t dealing with a fixed set of states… maybe an enum isn’t the right tool!


And Now You Know How To Use Enums in CSharp!

Understanding how to use enums in CSharp is a helpful skill that every software engineering professional should possess. In this article, we have covered the core concepts of enums, best practices, advanced features, benefits, and real-world applications. We have also explored the limitations and pitfalls of using enums, providing guidance for avoiding potential mistakes.

Knowing how to use enums can lead to clean, maintainable, and easy-to-understand code while reducing errors. By practicing working with enums, engineers can take advantage of these tools when they make sense – and know when to avoid them when they aren’t a good fit.

Understanding and applying enums can improve your programming skills, leading to more efficient and effective software development. It’s also great to avoid potentially problematic scenarios. Don’t forget to subscribe to the Dev Leader Weekly newsletter and check out my YouTube channel for more tips and guidance on C# programming!

Affiliations:

These are products & services that I trust, use, and love. I get a kickback if you decide to use my links. There’s no pressure, but I only promote things that I like to use!

      • RackNerd: Cheap VPS hosting options that I love for low-resource usage!
      • Contabo: Alternative VPS hosting options with very affordable prices!
      • ConvertKit: This is the platform that I use for my newsletter!
      • SparkLoop: This service helps me add different value to my newsletter!
      • Opus Clip: This is what I use for help creating my short-form videos!
      • Newegg: For all sorts of computer components!
      • Bulk Supplements: For an enormous selection of health supplements!
      • Quora: I try to answer questions on Quora when folks request them of me!

    author avatar
    Nick Cosentino Principal Software Engineering Manager
    Principal Software Engineering Manager at Microsoft. Views are my own.

    Leave a Reply