Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4549160
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T16:19:14+00:00 2026-05-21T16:19:14+00:00

From this sample on MSDN: [Flags] public enum Pet { None = 0, Dog

  • 0

From this sample on MSDN:

[Flags] 
public enum Pet {
   None = 0,
   Dog = 1,
   Cat = 2,
   Bird = 4,
   Rabbit = 8,
   Other = 16
}

Is there anyway to let the enum generates its values automatically ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T16:19:14+00:00Added an answer on May 21, 2026 at 4:19 pm

    Assuming that you really want a “flags” enum, there’s no automated way of doing this, no. The Pet example doesn’t seem like a good fit for flags, but I’m assuming that’s just an unfortunate choice of example. One option which reduces the possibility for error slightly is to use bit operations:

    [Flags] 
    public enum Pet {
       None = 0,
       Dog = 1 << 0,
       Cat = 1 << 1,
       Bird = 1 << 2,
       Rabbit = 1 << 3,
       Other = 1 << 4
    }
    

    If everything uses bit shifting, you know you won’t accidentally end up with a value which is actually multiple bits.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this sample text, which is retrieved from the class name on an
In the below code sample, what does {0:X2} mean? This is from the reflection
From this post . One obvious problem is scalability/performance. What are the other problems
This is pretty simple, I come from a swing/awt background. I'm just wondering what
I have a simple query like this: select * from mytable where id >
I have very simple select like this: SELECT * FROM table WHERE column1 IN
I have a language-agnostic question about an algorithm. This comes from a (probably simple)
From this question , a neat answer about using COALESCE to simplify complex logic
So from this string: name[id] I need this: id I used str.split ('[]'), but
Coming from this question , I have a wxComboCtrl with a custom popup made

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.