
Hello friends, I hope you all are having fun. In today's tutorial, we will have a look at detailed Introduction to Enums in C# . It's our 23rd tutorial in C# series and this C# concept is quite easy one. It's normally used to give better meanings/understanding to your project. If you haven't studied lectures on C# Classes & C# Methods , then do read them first, as we are going to use them today. So, let's get started with Introduction to Enums in C#: Introduction to Enums in C# Enums in C# ( short for Enumerations ) is a value type datatype for constants, created by using keyword enum and can be controlled by the class Enum . ( keyword with small e, while class with capital E ) We can declare & implement Enums directly in C# Namespace, class or struct and the underlying type of an enum is ...











