How can I create an enum using numbers?

PICyourBrain picture PICyourBrain · Jun 1, 2010 · Viewed 45.5k times · Source

Is it possible to make an enum using just numbers in C#? In my program I have a variable, Gain, that can only be set to 1, 2, 4, and 8. I am using a propertygrid control to display and set this value. If I were to create an enum like this...

 private enum GainValues {One, Two, Four, Eight}

and I made my gain variable of type GainValues then the drop-down list in the propertygrid would only show the available values for the gain variable. The problem is I want the gain values to read numerically an not as words. But I can not create an enum like this:

 private enum GainValues {1,2,4,8}

So is there another way of doing this? Perhaps creating a custom type?

Answer

LBushkin picture LBushkin · Jun 1, 2010

This isn't how enums work. An enumeration allow you to name a specific value so that you can refer to it in your code more sensibly.

If you want to limit the domain of valid numeric, enums may not be the right choice. An alternative, is to just create a collection of valid values that can be used as gains:

private int[] ValidGainValues = new []{ 1, 2, 4, 8};

If you want to make this more typesafe, you could even create a custom type with a private constructor, define all of the valid values as static, public instances, and then expose them that way. But you're still going to have to give each valid value a name - since in C# member/variable names cannot begin with a number (although they can contain them).

Now if what you really want, is to assign specific values to entries in a GainValues enumeration, that you CAN do:

private enum GainValues { One = 1, Two = 2, Four = 4, Eight = 8 };