ComboBox的selectedItem,给他一个字符串,匹配ComboBox的text信息
转载自:C# Enum,Int,String的互相转换
一、C# Enum,Int,String的互相转换(源文件,也是转载的)
Enum为枚举提供基类,其基础类型可以是除 Char 外的任何整型。如果没有显式声明基础类型,则使用 Int32。编程语言通常提供语法来声明由一组已命名的常数和它们的值组成的枚举。
注意:枚举类型的基类型是除 Char 外的任何整型,所以枚举类型的值是整型值。
Enum 提供一些实用的静态方法:
(1)比较枚举类的实例的方法
(2)将实例的值转换为其字符串表示形式的方法
(3)将数字的字符串表示形式转换为此类的实例的方法
(4)创建指定枚举和值的实例的方法。
举例:enum Colors { Red, Green, Blue, Yellow };
Enum-->String
(1)利用Object.ToString()方法:如Colors.Green.ToString()的值是"Green"字符串;
(2)利用Enum的静态方法GetName与GetNames:
public static string GetName(Type enumType,Object value)
public static string[] GetNames(Type enumType)
例如:Enum.GetName(typeof(Colors),3))与Enum.GetName(typeof(Colors), Colors.Blue))的值都是"Blue"
Enum.GetNames(typeof(Colors))将返回枚举字符串数组。
String-->Enum
(1)利用Enum的静态方法Parse:
public static Object Parse(Type enumType,string value)
例如:(Colors)Enum.Parse(typeof(Colors), "Red")
Enum-->Int
(1)因为枚举的基类型是除 Char 外的整型,所以可以进行强制转换。
例如:(int)Colors.Red, (byte)Colors.Green
Int-->Enum
(1)可以强制转换将整型转换成枚举类型。
例如:Colors color = (Colors)2 ,那么color即为Colors.Blue
(2)利用Enum的静态方法ToObject。
public static Object ToObject(Type enumType,int value)
例如:Colors color = (Colors)Enum.ToObject(typeof(Colors), 2),那么color即为Colors.Blue
判断某个整型是否定义在枚举中的方法:Enum.IsDefined
public static bool IsDefined(Type enumType,Object value)
例如:Enum.IsDefined(typeof(Colors), n))
二、c# Enum获取name,value和description
如果我们的枚举类型结构如下,我们需要获取enum的name,value以及description
public enum EnumTest
{
[Description("Attribute")]
Attribute1 = 1,
[Description("Attribute")]
Attribute2 = 2,
[Description("Measure")]
Measure1 = 3,
[Description("Measure")]
Measure2 = 4
}
获取的函数代码如下:
public class EnumHelper
{
/// <summary>
/// get all information of enum,include value,name and description
/// </summary>
/// <param name="enumName">the type of enumName</param>
/// <returns></returns>
public static List<dynamic> GetAllItems(Type enumName)
{
List<dynamic> list = new List<dynamic>();
// get enum fileds
FieldInfo[] fields = enumName.GetFields();
foreach (FieldInfo field in fields)
{
if (!field.FieldType.IsEnum)
{
continue;
}
// get enum value
int value = (int)enumName.InvokeMember(field.Name, BindingFlags.GetField, null, null, null);
string text = field.Name;
string description = string.Empty;
object[] array = field.GetCustomAttributes(typeof(DescriptionAttribute), false);
if (array.Length > 0)
{
description = ((DescriptionAttribute)array[0]).Description;
}
else
{
description = ""; //none description,set empty
}
//add to list
dynamic obj = new ExpandoObject();
obj.Value = value;
obj.Text = text;
obj.Description = description;
list.Add(obj);
}
return list;
}
/// <summary>
/// get enum description by name
/// </summary>
/// <typeparam name="T">enum type</typeparam>
/// <param name="enumItemName">the enum name</param>
/// <returns></returns>
public static string GetDescriptionByName<T>(T enumItemName)
{
FieldInfo fi = enumItemName.GetType().GetField(enumItemName.ToString());
DescriptionAttribute[] attributes = (DescriptionAttribute[])fi.GetCustomAttributes(
typeof(DescriptionAttribute), false);
if (attributes != null && attributes.Length > 0)
{
return attributes[0].Description;
}
else
{
return enumItemName.ToString();
}
}
}
————————————————