1. Back To Blog

What is ENUM and what are the benefits of using it (ENUM C# Interview Question 1)?

ENUM helps to define, manage and assign constants in effective way. Now the below sample code is good but the level values are not readable.

if (level == 0)Console.WriteLine("Below quality");}

else if (level == 1)Console.WriteLine("Moderate quality");}

else if(level == 2)Console.WriteLine("High quality");}

 Now by declaring a simple enum called as Quality as shown below.

enum Quality

      Low = 0,

      Moderate = 1,

      High = 2

};

Our code would look more readable as shown below. The other big benefit is if we change the numeric values of quality we do not have to change throughout the project. So we can go a change the Low quality to 1 and no change in code is required. 

if (level == Quality.Low)Console.WriteLine("Below quality");}

else if (level == Quality.Moderate)Console.WriteLine("Moderate quality");}

else if(level == Quality.High)Console.WriteLine("High quality");}

 So summarizing ENUM has two big benefits:-

  • Code becomes more readable.
  • Easy to change constants without affecting throughout the project. Easy maintenance.

Next ENUM C# Interview questions: -What are flags in Enum ?

http://questpond.over-blog.com/article-what-is-the-use-of-enum-flags-netenum-interview-question-2-120615927.html

This question is taken from the book .NET Interview questions with answers

 http://www.flipkart.com/net-interview-questions-6th/p/itmdyuqzdqx8cvqx and sponsored by http://www.questpond.com/.

This is a nice .NET Interview question video which talks about Build Vs Rebuild solution.

Watch our latest video on C# interview questions & answers :-

Shiv Prasad Koirala

Visit us @ www.questpond.com or call us at 022-66752917... read more

We are on Social