Tag: enumeration

  • Understanding Enumerations (enum) in C#

    An enumeration, often referred to as enums, are a great C# programming language feature that allows developers to define a set of named integral constants. Enums add a meaningful name to otherwise numeric values that makes the code more readable and easier to maintain.