Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
When you use flag(Enum) you have a limit of 64. What are the alternative when you reach the limit?

I have the following [Flags] enum that has to contain 33 elements:

[Flags]
public enum Types
{
    None = 0,
    Alarm = 1,
    Exit = 2,
    Panic = 4,
    Fire = 8,
    Tamper = 16,
    Key = 32,
    Line = 64,
    FTC = 128,
    Unused = 256,
    tech_1 = 512,
    //... tech_2 through _7 omitted for brevity
    tech_8 = 65536,
    fire_1 = 131072,
    //... fire_2 through _11 omitted for brevity
    fire_12 = 268435456,
    Key = 536870912,
    Exit = 1073741824,
    Gas = 2147483648, // Cannot convert source type uint to target type int
}

The value for the last item appears to be too large. Has anyone dealt with this before? Any ideas how this can be resolved / worked around?

share|improve this question
1  
a loooong enum.. – Danny Chen Apr 20 '12 at 9:29

marked as duplicate by Daniel Daranas, mathieu, Reniuz, jgauffin, bmargulies Apr 20 '12 at 19:53

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 12 down vote accepted

You can specify the type of the enum to be something with a greater range.

[Flags]
public enum Types : long
share|improve this answer
Since there are no negative values in the enum you could also use public enum Types : uint saves 4 bytes :P – albertjan Apr 20 '12 at 11:51

Not the answer you're looking for? Browse other questions tagged or ask your own question.