Получи случайную криптовалюту за регистрацию!

What is enum in C#? An enum is a value type with a set of rel | C# 1001 notes

What is enum in C#?

An enum is a value type with a set of related named constants often referred to as an enumerator list. The enum keyword is used to declare an enumeration. It is a primitive data type, which is user defined. An enum is used to create numeric constants in .NET framework. All the members of enum are of enum type. Their must be a numeric value for each enum type.

Some points about enum:

Enums are enumerated data type in C#.

Enums are strongly typed constant. They are strongly typed, i.e. an enum of one type may not be implicitly assigned to an enum of another type even though the underlying value of their members are the same.

Enumerations (enums) make your code much more readable and understandable.

Enum values are fixed. Enum can be displayed as a string and processed as an integer.

The default type is int, and the approved types are byte, sbyte, short, ushort, uint, long, and ulong.

Enums are value types and are created on the stack and not on the heap.