Select Categories Below
Advertisement
Start Your Own Q&A Site
Create your own Q&A site easily, allowing you to quickly grow a new community around any subject matter or generate new organic traffic for your existing website.
Status: Closed Points: 75 Time: 03:52 - Nov 24, 2006
theDude
In C# want to access the enum values by the index and not having to make a switch/case statement. How do I do that?
Categories:
Add Categories
When adding more than one category, separate them with commas.
Date:: Nov 24, 2006
Time:: 04:17
I tried this, but got an exception in the first line: value is a string that contains the index Array values = Enum.GetValues(typeof(MYENUM)); value = (string) values.GetValue(Convert.ToInt32(value));
PeterNZ
Date:: Nov 26, 2006
Time:: 16:24
Confusing! This works for me: enum MyEnum {One = 1, Two = 2, Three = 3, Four = 4}; static void Main(string[] args) { string strIndex = "2"; string value; Array values = Enum.GetValues(typeof(MyEnum)); value = values.GetValue(Convert.ToInt32(strIndex)).ToString(); Console.WriteLine(value); Console.Read(); } Cheers Peter
Date:: Dec 15, 2006
Time:: 12:20
ah, i think i only assigned the names to the enum, without giving them a value. I thought they automatically had an index from 0 and up... Thanks for your help, Peter.
tikepatel
Date:: Dec 22, 2006
Time:: 07:30
Thank you very very much for ur detailed example which i want.
temjung99
Date:: Feb 19, 2012
Time:: 14:04
// Just use (int) in front of enum variable. // Example ------------------------- enum MyEnum {One=1,Two=2} private void echoEnumValue(MyEnum pParamEnum) { string msg = ((int)pParamEnum).ToString(); MessageBox.Show(msg); }
Question Answered
This question has been closed, and points have been rewarded to the following experts:
You're welcome however to comment or give additional information or if you wish, you have the ability to write a Tutorial in the Tutorial Area.
Answer this Question
New User
Email:
Upon submission of this form, you will automatically be registered as a Quomon user and we will send your login information to this address
Registered User
Username:
Password:
Forgot Your Password?
Enter your email address below and we will resend your login information to you.
Login Information Sent
Questions
whats the best food to eat during midnight?
How to identify the tiffany jewelry? www.tffanycheapmall.com.
Send an email alert to each user of the php application based on criteria
How I Increased My AdSense Earnings?
how to choose the lady dress ?
How can I fulfill the minimum requirement to make your computer support 3D?
You have 100 characters to use
Rank
Expert
Points
1.
10354
2.
6493
3.
5596
4.
4848
5.
3487
6.
2840
7.
2770
8.
2303
9.
1820
10.
917
Register today to share your knowledge with the community and be recognized and rewarded for your contributions.
Register Here
"Psst, Quomon is a great site. Pass it on." Tell a Friend | Link To Us | Save to Delicious | Digg it
Language Options
English:
Español:
Sponsors
Questions and Answers Software