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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:06:55+00:00 2026-06-01T23:06:55+00:00

possible duplicate of Finding an enum value by its Description Attribute I get the

  • 0

possible duplicate of Finding an enum value by its Description Attribute

I get the description of the MyEnum from the user selected checkbox,
I have to find the value and save it. Can someone help me how to find the value of the Enum given description

public enum MyEnum
{
   [Description("First One")]
   N1,
   [Description("Here is another")]
   N2,
   [Description("Last one")]
   N3
}

For example i will be give Here is Another i have to return N1, when I receive Last one I have to return N3.

I just have to do the opposite of How to get C# Enum description from value?

Can someone help me?

  • 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-01T23:06:57+00:00Added an answer on June 1, 2026 at 11:06 pm

    Like this:

    // 1. define a method to retrieve the enum description
    public static string ToEnumDescription(this Enum value)
    {
        FieldInfo fi = value.GetType().GetField(value.ToString());
    
        DescriptionAttribute[] attributes =
            (DescriptionAttribute[])fi.GetCustomAttributes(
            typeof(DescriptionAttribute),
            false);
    
        if (attributes != null &&
            attributes.Length > 0)
            return attributes[0].Description;
        else
            return value.ToString();
    }
    
    //2. this is how you would retrieve the enum based on the description:
    public static MyEnum GetMyEnumFromDescription(string description)
    {
        var enums = Enum.GetValues(typeof(MyEnum)).Cast<MyEnum>();
    
        // let's throw an exception if the description is invalid...
        return enums.First(c => c.ToEnumDescription() == description);
    }
    
    //3. test it:
    var enumChoice = EnumHelper.GetMyEnumFromDescription("Third");
    Console.WriteLine(enumChoice.ToEnumDescription());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Finding an enum value by its Description Attribute I have a generic
Possible Duplicate: optimal algorithm for finding unique divisors I have asked this question before,
Possible Duplicate: Extracting dollar amounts from existing sql data? I have a column in
Possible Duplicate: Finding all cycles in graph I have a task I've been wrapping
Possible Duplicate: Finding a submatrix with the maximum possible sum in O(n^2) I have
Possible Duplicate: Finding the N th Occurrence of a Match line I have multi-line
Possible Duplicate: Finding Variable Type in JavaScript How can I test if a value
Possible Duplicate: More efficient way to remove elements from an array list I have
Possible Duplicate: Finding the Variable Name passed to a Function in C# In C#,
Possible Duplicates: Finding duplicate files and removing them. In Python, is there a concise

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.