How can I create an enum using numbers?

前端 未结 7 1336
野趣味
野趣味 2021-01-11 11:11

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

相关标签:
7条回答
  • 2021-01-11 11:45

    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.

    0 讨论(0)
  • 2021-01-11 11:47

    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

    0 讨论(0)
  • 2021-01-11 11:51

    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
    
    0 讨论(0)
  • 2021-01-11 11:53

    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 };
    
    0 讨论(0)
  • 2021-01-11 11:53
    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.

    0 讨论(0)
  • 2021-01-11 11:54

    If I understood the original question correctly, the answer may be this:

    You can get numbers listed in an enum in the inspector by simply using an underscore prefix, e.g:

    public enum MyNumbers{ _1, _2, _3, _4 };
    public MyNumbers myNumbers;
    

    Hope this is helps!

    0 讨论(0)
提交回复
热议问题