Convert string to Enum and enum to string

Source: Internet
Author: User

I. Convert string to Enum in C:

 

 
Object enum. parse (system. Type enumtype, string value, bool ignorecase );
 
Therefore, we canCodeWrite as follows:

 
Enum colour {red, green, blue }//... colour c = (colour) enum. parse (typeof (colour), "Red", true); console. writeline ("colour value: {0}", C. tostring (); // picking an invalid color throws an argumentexception. to // avoid this, call enum. isdefined () first, as follows: String noncolour = "polkadot"; if (enum. isdefined (typeof (colour), noncolour) c = (colour) enum. parse (typeof (colour), noncolour, True); else MessageBox. Show ("Uh oh! ");
 
Ii. Switch in C #EnumChangeString:
Object Enum. getname (typeof (enumtype), value); therefore, in the preceding example, we can write: String c2string = enum. getname (typeof (colour), C ); Note: Interestingly, I noticed that Enum. isdefined () is not provided Ignorecase If you do not know whether the case is correct, it seems that you have to use the parse method to convert and capture argumentexception. This method is not ideal because it will be a little slow, maybe it's a design vulnerability.

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.