What is main use of Enumeration?

后端 未结 10 1778
时光取名叫无心
时光取名叫无心 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:10

    An enumeration type (also named an enumeration or an enum) provides an efficient way to define a set of named integral constants that may be assigned to a variable.

    http://msdn.microsoft.com/en-us/library/cc138362.aspx

提交回复
热议问题