我有一个自定义枚举类:
public enum Capabilities{
PowerSave= 1,
PnP =2,
Shared=3, }
我的课
public class Device
{
....
public Capabilities[] DeviceCapabilities
{
get { // logic goes here}
}
有没有办法在运行时使用反射来获取该字段的值?我尝试了以下但得到空引用异常
PropertyInfo[] prs = srcObj.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);
foreach (PropertyInfo property in prs)
{
if (property.PropertyType.IsArray)
{
Array a = (Array)property.GetValue(srcObj, null);
}
}
编辑:感谢您的回答,我真正需要的是一种无需指定枚举类型即可动态获取值的方法。就像是:
string enumType = "enumtype"
var property = typeof(Device).GetProperty(enumType);
那可能吗?