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

  • Home
  • SEARCH
  • 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

Related Questions

I have a parent to child relationship. My problem is, when I access the
I have many objects with a property description where is like this: description: This
The DisplayAttribute in System.ComponentModel.DataAnnotations has a GroupName property, which allows you to logically group
I'm trying to access @Service defined class Interfaces are defined, here is an implementation
I cannot seem to get hold of the parent varible from the child template,
In web.xml I have the following: <servlet> <description>JAX-WS endpoint - EARM</description> <display-name>jaxws-servlet</display-name> <servlet-name>jaxws-servlet</servlet-name> <servlet-class>com.sun.xml.ws.transport.http.servlet.WSSpringServlet</servlet-class>
I have a Django model class with a non-model-field property, ex: def _get(self): return
I need to access a property of a bean whose name is stored in
I'm trying this code to access a property but it gives me an error:
I am using a helper class in my app, to access a database and

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.