views:

232

answers:

5

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?

+4  A: 
private enum GainValues { One = 1, Two = 2, Four = 4, Eight = 8 }

should work.

Update: OK, I think I misunderstood you there.

Maybe you could use a KeyValuePair<string, int> and then bind the name and the value to the Key and Value property respectively.

corvuscorax
It's not clear that this is what the OP is looking for. It looks more like he wants to use the numeric literal values as the *names* of the enumeration members - which is illegal.
LBushkin
@LBushkin: given the description it is _probably_ what the OP wants.
Henk Holterman
@Henk: I'm not so sure, the OP writes: `The problem is I want the gain values to read numerically an not as words.` My interpretation is the OP wants a limited list of valid values for gains, rather than a named enumeration.
LBushkin
Right, the PropertyGrid applies the ToString(). Maybe the Description attribute can help, I'm not sure: http://blogs.msdn.com/b/paulwhit/archive/2008/03/31/use-the-descriptionattribute-with-an-enum-to-display-status-messages.aspx
Henk Holterman
@ALL: basically I want the drop-down in the property grid to show only 1, 2, 4 and 8 as the options for the gain.
Jordan S
A: 

use explicit value assignment in the enum:

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

Then to enumerate through these values do as follows:

GainValues currentVal;

foreach(currentVal in Enum.GetValues(typeof(GainValues))
{
   // add to combo box (or whatever) here
}

Then you can cast to/from ints as necessary:

int valueFromDB = 4;

GainValues enumVal = (GainValues) valueFromDB;

// enumVal should be 'Four' now
mjmarsh
+9  A: 

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 };
LBushkin
You'd probably want to make this static readonly, and maybe internal or public depending on scope requirements, but yeah, this is the best solution.
Cylon Cat
@Cylon Cat: Yes, good point about the static/readonly, although in practice, you'd need it to be a collection like List<int> rather than an array to really enforce immutability.
LBushkin
A: 

Unfortunately, symbols in C# can contain numbers, but cannot start with numbers. So you're gonna have to use words.

Alternatively, you could do Gain1, Gain2, etc.

Or you could forgo an enum altogether and use constants and internal processing.

Randolpho
A: 

You can use one custom list as a datasource for your drop down list.

Code Behind:

using GainItem = KeyValuePair<string, int>;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            List<GainItem> dic = new List<GainItem>();
            dic.Add(new GainItem("First", 1));
            dic.Add(new GainItem("Second", 2));
            dic.Add(new GainItem("Fourth", 4));
            ddl.DataSource = dic;
            ddl.DataBind();
        }


    }

    protected void btn_Click(object sender, EventArgs e)
    {
        Response.Write(ddl.SelectedValue);
    }
}

Asp Page:

    <div>
    <asp:DropDownList runat="server" ID="ddl" DataValueField="Value" DataTextField="Key" />
    <asp:Button ID="btn" runat="server" OnClick="btn_Click" />
   </div>

In addition, you can have enum for setting default value, ...

hope this helps

Matin Habibi