如何从C#中的未知枚举中获取值



我实际上正在编程一个扩展对象的deepToString方法。这使用反射来获取对象的每个属性,并为此属性调用deepToString方法。除了枚举之外,一切都很好。如果我尝试将PropertyInfo.GetValue()与枚举一起使用,它总是返回零。

如何获取真正的int值?我错过了什么?

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
    }
  }
}

我必须补充一点,反思是邪恶的。真正需要它的情况很少。。

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
    }
}

相关内容

  • 没有找到相关文章

最新更新