我认为这个问题需要一些代码:
private TypeValues GetEnumValues(Type enumType, string description)
{
TypeValues wtv = new TypeValues();
wtv.TypeValueDescription = description;
List<string> values = Enum.GetNames(enumType).ToList();
foreach (string v in values)
{
//how to get the integer value of the enum value 'v' ?????
wtv.TypeValues.Add(new TypeValue() { Code = v, Description = v });
}
return wtv;
}
这样称呼:
GetEnumValues(typeof(AanhefType), "some name");
在GetEnumValues
函数中,我有枚举值。所以我迭代这些值,我也希望得到该枚举值的整数值。
所以我的值是'红色'和'绿色',我也希望得到0和1。
当我在我的函数中使用Enum时,我可以从字符串创建枚举值并将其强制转换为枚举,然后将其强制转换为int,但在这种情况下,我本身没有枚举,但是只有枚举的类型。
我尝试将实际枚举作为参数传递,但我不允许将枚举作为参数传递。
所以现在我被卡住了.....
答案 0 :(得分:5)
private TypeValues GetEnumValues(Type enumType, string description)
{
TypeValues wtv = new TypeValues();
wtv.TypeValueDescription = description;
List<string> values = Enum.GetNames(enumType).ToList();
foreach (string v in values)
{
//how to get the integer value of the enum value 'v' ?????
int value = (int)Enum.Parse(enumType, v);
wtv.TypeValues.Add(new TypeValue() { Code = v, Description = v });
}
return wtv;
}
http://msdn.microsoft.com/en-us/library/essfb559.aspx
Enum.Parse将获取一个Type和一个String,并返回对其中一个枚举值的引用 - 然后可以简单地将其转换为int。
答案 1 :(得分:5)
尝试
(int)Enum.Parse(enumType, v)
答案 2 :(得分:0)
public static class StringEnum
{
public static string GetStringValue(Enum value)
{
string output = null;
Type type = value.GetType();
FieldInfo fi = type.GetField(value.ToString());
StringValue[] attr = fi.GetCustomAttributes(typeof(StringValue), false) as StringValue[];
if (attr.Length > 0)
{
output = attr[0].Value;
}
return output;
}
}
是获取字符串值的方法。
public enum CampaignRequestType { [StringValue("None")] None = 0, [StringValue("Pharmacy Cards")] Pharmacy_Cards = 1,[StringValue("Prospect Campaign")] Prospect_Campaign = 2,[StringValue("Tradeshow/Advertising")] Tradeshow_Advertising = 3 }
它是一个枚举...
string item = StringEnum.GetStringValue((Enumeration.CampaignRequestType)updateRequestStatus.RequestType_Code);
这里(Enumeration.CampaignRequestType)
是我的枚举
和updateRequestStatus.RequestType_Code
是数据库字段int类型
我将 int 值转换为枚举类型