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 8343247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T06:00:01+00:00 2026-06-09T06:00:01+00:00

Possible Duplicate: Enums returning int value How to get the numeric value from the

  • 0

Possible Duplicate:
Enums returning int value
How to get the numeric value from the Enum?

THIS IS NOT A DUPLICATE OF EITHER OF THESE, THANKS FOR READING THE QUESTION MODS

Suppose I have a number of my flags enum items selected:

[Flags]
public enum Options
{
    None = 0,
    Option_A = 1,
    Option_B = 2,
    Option_C = 4,
    Option_D = 8,
}

Options selected = Options.Option_A | Options.Option_B;

The value of selected should correspond to 3 (i.e. 2 + 1)

How can I get this into an int?

I’ve seen examples where the selected is cast ToString() and then split() into each option, e.g.

"Option_A | Option_B" --> { "Option_A", "Option_B" },

then reconstituted into the respective Enum, and the values taken from that, but it’s a bit messy. Is there a more straight-forward way to get the sum of these values?

  • 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-06-09T06:00:02+00:00Added an answer on June 9, 2026 at 6:00 am

    There is not much options as just make an if

    List<int> composedValues = new .... 
    if((selected & Option_A) == Options.Option_A)
        composedValues.Add((int)Options.Option_A);
    else if((selected & Option_B) == Options.Option_B)
        composedValues.Add((int)Options.Option_B);
    else if(...)
    

    Finally you will get a list of all compositional values of the result in the composedValues list.

    If this is not what you’re asking for, please clarify.

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

Sidebar

Related Questions

Possible Duplicate: Enums returning int value I want to numerate Stack , Overflow and
Possible Duplicate: add values to enum Why enums in Java cannot inherit from other
Possible Duplicate: Using GetHashCode for getting Enum int value Is it safe to use
Possible Duplicate: How do I serialize an enum value as an int? Hi, all!
Possible Duplicate: Get Enum from Description attribute I have an Enum that uses the
possible duplicate of Finding an enum value by its Description Attribute I get the
First of all, this is not a duplicate of Enums in Ruby :) The
Possible Duplicate: Why do multiple-inherited functions with same name but different signatures not get
Possible Duplicate: Finding an enum value by its Description Attribute I have a generic
Possible Duplicate: C++: Print out enum value as text Say I have an enumeration:

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.