我实际上正在编写一个扩展对象的deepToString-Method。这使用反射来获取对象的每个属性,并为此属性调用deepToString-Method。除了Enums,一切都很好。如果我尝试将PropertyInfo.GetValue()
与枚举一起使用,它总是返回零。
如何获得真正的int-Value?我错过了什么?
答案 0 :(得分:2)
foreach (PropertyInfo propertyInfo in your_class.GetType().GetProperties())
{
if ((info.PropertyType.IsEnum) && (info.PropertyType.IsPublic))
{
foreach (FieldInfo fInfo in this.propertyInfo.PropertyType.GetFields(BindingFlags.Public | BindingFlags.Static))
{
ListItem item = new ListItem(fInfo.Name, fInfo.GetRawConstantValue().ToString());
//... use it
}
}
}
我必须补充说反射是EVIL。罕见的是真正需要它的场合..
答案 1 :(得分:1)
public enum Foo
{
Boo,
Koo
}
public Foo foo { get; set; }
[Fact]
public void FactMethodName()
{
foo = Foo.Koo;
var propertyInfo = this.GetType().GetProperty("foo");
if (propertyInfo.PropertyType.IsEnum)
{
var value = propertyInfo.GetValue(this, null);
Console.Out.WriteLine("value = {0}", value); //prints Koo
int asInt = (int)value;
Console.Out.WriteLine("asInt = {0}", asInt); //prints 1
}
}