What is type of enum?
(a) int (b) byte (c) float (d) all the above
hey experts give me a answer...........
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Aleksandar IlioskiPosted Jan 31, 2010, 10:02 AM
but if you has for example
public enum beautifulColors
{red,gren,yalow,}
and later in the conde you write: (int)beautifulColors.red, you will get value:0,
(int)beautifulColor.green, result would be 1.. ... if that helps you ...