blah blah blah is here! blah blah » Close

1
votes
1 answers

How to enumerate an enumeration in c#? I need to loop through the items.

Rick_A
761

I have an enumeration like this: [code]public enum UserType { Normal = 1, Moderator = 2, Super = 3 }[/code] How can I loop through these items and output the name and value for each enumeration item? I ...

1
votes
1 answers

Java enums versus c# enumerations

Rick_A
761

When looking at java enumerations versus c#'s enumerations implementation, are there any underlying differences? I believe java recently introduced enumerations, so was curious if they work the same as how enums are used in c#.

Feedback