zoukankan      html  css  js  c++  java
  • C# 枚举、字符串、值的相互转换

     1 using  System;  
     2   
     3 class  Program  
     4 {  
     5     public   enum  Color  
     6    {  
     7       Red  =   0xff0000 ,  
     8       Orange  =   0xFFA500 ,  
     9       Yellow  =   0xFFFF00 ,  
    10       Lime  =   0x00FF00 ,  
    11       Cyan  =   0x00FFFF ,  
    12       Blue  =   0x0000FF ,  
    13       Purple  =   0x800080   
    14    }  
    15   
    16     static   void  Main( string [] args)  
    17    {  
    18       Color color  =  Color.Blue;  
    19        string  colorString  =   " Blue " ;  
    20        int  colorValue  =   0x0000FF ;  
    21   
    22        // 枚举转字符串   
    23        string  enumStringOne  =  color.ToString(); //效率低,不推荐  
    24        string  enumStringTwo  =  Enum.GetName( typeof (Color), color);//推荐  
    25   
    26        // 枚举转值   
    27        int  enumValueOne  =  color.GetHashCode();  
    28        int  enumValueTwo  =  ( int )color;  
    29        int  enumValueThree  =  Convert.ToInt32(color);  
    30   
    31        // 字符串转枚举   
    32       Color enumOne  =  (Color)Enum.Parse( typeof (Color), colorString);  
    33   
    34        // 字符串转值   
    35        int  enumValueFour  =  ( int )Enum.Parse( typeof (Color), colorString);  
    36   
    37        // 值转枚举   
    38       Color enumTwo  =  (Color)colorValue;  
    39       Color enumThree  =  (Color)Enum.ToObject( typeof (Color), colorValue);  
    40   
    41        // 值转字符串   
    42        string  enumStringThree  =  Enum.GetName( typeof (Color), colorValue);  
    43    }  
    44 }  
    45    
    46   
    47 // 假设有枚举值如下:   
    48   
    49 public   enum  DbProviderType  
    50   
    51   {  
    52   
    53       SqlServer,  
    54   
    55       Oracle  
    56   
    57   }  
    58 // 1、将枚举转换为字符串:   
    59   
    60 string  strDbType  =  DbProviderType.SqlServer.ToString();  
    61 // 2、将字符串转换为枚举:   
    62 DbProviderType dbType  =  (DbProviderType)Enum.Parse( typeof (DbProviderType), strDbType,  true );  
  • 相关阅读:
    各种sensor名称统计
    数组指针和指针数组的区别
    自己写一个线程池
    git命令总结
    用链表实现队列的功能
    一个free的问题
    生产者消费者问题--进阶2
    影响架构决策的非功能性需求
    从商业角度探讨API设计
    给公司部门设计的SOA架构
  • 原文地址:https://www.cnblogs.com/ZHENGJUNupperclassman/p/7866370.html
Copyright © 2011-2022 走看看