How do you access the Description property on either a const or a property, i.e.,
public static class Group { [Description( \"Specified parent-child rel
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:
Type
MemberInfo
PropertyInfo prop = typeof(Group).GetProperty("UserExistsInGroup", BindingFlags.Public | BindingFlags.Static);