What is main use of Enumeration?

后端 未结 10 1775
时光取名叫无心
时光取名叫无心 2020-12-08 07:35

What is main use of Enumeration in c#?

Edited:- suppose I want to compare the string variable with the any enumeration item then how i can do this

10条回答
  •  春和景丽
    2020-12-08 08:07

    Another advantage of using Enum is that in case of any of the integer value needs to be changed, we need to change only Enum definition and we can avoid changing code all over the place.

提交回复
热议问题