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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:16:54+00:00 2026-05-11T11:16:54+00:00

How do you access the Description property on either a const or a property,

  • 0

How do you access the Description property on either a const or a property, i.e.,

public static class Group {      [Description( 'Specified parent-child relationship already exists.' )]     public const int ParentChildRelationshipExists = 1;      [Description( 'User is already a member of the group.' )]     public const int UserExistsInGroup = 2;  } 

or

public static class Group {      [Description( 'Specified parent-child relationship already exists.' )]     public static int ParentChildRelationshipExists {        get { return 1; }      }      [Description( 'User is already a member of the group.' )]     public static int UserExistsInGroup {        get { return 2; }      }  } 

In the calling class I’d like to access the Description property, i.e.,

int x = Group.UserExistsInGroup; string description = Group.UserExistsInGroup.GetDescription(); // or similar 

I’m open to ideas to other methodologies as well.

EDIT: I should have mentioned that I’ve seen an example provided here: Do auto-implemented properties support attributes?

However, I’m looking for a method to access the description attribute without having to enter a string literal into the property type, i.e., I’d rather not do this:

typeof(Group).GetProperty('UserExistsInGroup'); 

Something along the lines of an Extension Method; similar to the following method that will return the Description attribute on an Enum via an Extension Method:

public static String GetEnumDescription( this Enum obj ) {     try     {         System.Reflection.FieldInfo fieldInfo =              obj.GetType().GetField( obj.ToString() );          object[] attribArray = fieldInfo.GetCustomAttributes( false );          if (attribArray.Length > 0)         {             var attrib = attribArray[0] as DescriptionAttribute;              if( attrib != null  )                 return attrib.Description;         }         return obj.ToString();     }     catch( NullReferenceException ex )     {         return 'Unknown';     } } 
  • 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. 2026-05-11T11:16:55+00:00Added an answer on May 11, 2026 at 11:16 am

    You can call MemberInfo.GetCustomAttributes() to get any custom attributes defined on a member of a Type. You can get the MemberInfo for the property by doing something like this:

    PropertyInfo prop = typeof(Group).GetProperty('UserExistsInGroup',     BindingFlags.Public | BindingFlags.Static); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 120k
  • Answers 120k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I came across a similar problem a few weeks ago.… May 12, 2026 at 12:00 am
  • Editorial Team
    Editorial Team added an answer First character is numeric: SELECT * FROM ... WHERE name… May 12, 2026 at 12:00 am
  • Editorial Team
    Editorial Team added an answer If you can use .NET 3.5 and System.Data.DataSetExtensions.dll, you might… May 12, 2026 at 12:00 am

Related Questions

I have two Tables. Order - With Columns OrderID, OrderStatusID OrderStatus - With Columns
Whenever I restrict anonymous access in my MVC site I get a 404 error:
Do you often see in API documentation (as in 'javadoc of public functions' for
Folks, I'm creating a new WCF Service and started with my Service interface. Looks

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.