C # bind all the descriptions and values in an enumeration to the drop-down list,

Source: Internet
Author: User

C # bind all the descriptions and values in an enumeration to the drop-down list,

 

/// <Summary>
/// Obtain the description of the enumerated value. If there is no description, the enumerated name is returned.
/// </Summary>
/// <Param name = "en"> enumeration value </param>
/// <Returns> description </returns>
Public static string GetEnumDescription (Enum en)
{
FieldInfo fi = en. GetType (). GetField (en. ToString ());

Object [] attrs = fi. GetCustomAttributes (typeof (DescriptionAttribute), false );
If (attrs! = Null & attrs. Length> 0)
{
Return (DescriptionAttribute) attrs [0]). Description;
}
Else
{
Return en. ToString ();
}
}

 

 

ArrayList listcode = new ArrayList (); // defines a set.
Foreach (int I in Enum. GetValues (typeof (ErrorCode) // Add the enumeration description and value loop to the Set (ErrorCode: enumeration name)
{
ListItem listitem = new ListItem (GetEnumDescription (ErrorCode) I), I. ToString ());

// ListItem listitem = new ListItem (Enum. GetName (typeof (EnumActivityType), I), I. ToString (); // obtain the enumeration name set
Listcode. Add (listitem );
}

Certificate -----------------------------------------------------------------------------------------------------------------------------------------------------
For (int I = 0; I <listcode. Count; I ++) // You can output the description and value of each enumeration in a loop.
{
ListItem item = (ListItem) listcode [I];
Var d = item. Text;
Var B = item. Value;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.