C# Enum
Enum is also known as enumeration that consists of a set of named integral constants. In C#, enumerations are value data types. The keyword enum is used to define these data types. The is mainly used to assign the names or string that makes the code more maintainable and readable. For example, we can create … Read more