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

    using System;

    class Program
    {
       
    public enum Color
       {
          Red 
    = 0xff0000,
          Orange 
    = 0xFFA500,
          Yellow 
    = 0xFFFF00,
          Lime 
    = 0x00FF00,
          Cyan 
    = 0x00FFFF,
          Blue 
    = 0x0000FF,
          Purple 
    = 0x800080
       }

       
    static void Main(string[] args)
       {
          Color color 
    = Color.Blue;
          
    string colorString = "Blue";
          
    int colorValue = 0x0000FF;

          
    //枚举转字符串
          string enumStringOne = color.ToString();
          
    string enumStringTwo = Enum.GetName(typeof(Color), color);

          
    //枚举转值
          int enumValueOne = color.GetHashCode();
          
    int enumValueTwo = (int)color;
          
    int enumValueThree = Convert.ToInt32(color);

          
    //字符串转枚举
          Color enumOne = (Color)Enum.Parse(typeof(Color), colorString);

          
    //字符串转值
          int enumValueFour = (int)Enum.Parse(typeof(Color), colorString);

          
    //值转枚举
          Color enumTwo = (Color)colorValue;
          Color enumThree 
    = (Color)Enum.ToObject(typeof(Color), colorValue);

          
    //值转字符串
          string enumStringThree = Enum.GetName(typeof(Color), colorValue);
       }
    }
    //假设有枚举值如下:

    public enum DbProviderType

      {

          SqlServer,

          Oracle

      }
    //1、将枚举转换为字符串:

    string strDbType = DbProviderType.SqlServer.ToString();
    //2、将字符串转换为枚举:

    DbProviderType dbType = (DbProviderType)Enum.Parse(typeof(DbProviderType), strDbType, true); 

  • 相关阅读:
    转来的:Diablo中的七大套装背景
    我的单元测试认识之路(下)
    《You can do it!》的chapter 2笔记
    一个枚举的简单应用
    仿百度的搜索下拉提示
    简单的 菜单当前选中 解决思路
    单元测试框架NUnit 之 Attributes特性(一)
    单元测试框架NUnit 之 constraints 约束
    分享个自己的ajax封装
    开源单元测试工具 Nunit
  • 原文地址:https://www.cnblogs.com/itelite/p/2016159.html
Copyright © 2011-2022 走看看