我有一个定制枚举的课程:
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);
这可能吗?
答案 0 :(得分:1)
以下应该按照你的意愿行事。
var property = typeof(Device).GetProperty("DeviceCapabilities");
var deviceCapabilities = (Capabilities[])property.GetValue(device);
请注意,方法Object PropertyInfo.GetValue(Object)
是.NET 4.5中的新增功能。在以前的版本中,您必须为索引添加一个额外的参数。
var deviceCapabilities = (Capabilities[])property.GetValue(device, null);
答案 1 :(得分:0)
这应该有效:
var source = new Device();
var property = source.GetType().GetProperty("DeviceCapabilities");
var caps = (Array)property.GetValue(source, null);
foreach (var cap in caps)
Console.WriteLine(cap);
答案 2 :(得分:0)
如果要枚举Enum的所有可能值并作为数组返回,请尝试使用此辅助函数:
public class EnumHelper {
public static IEnumerable<T> GetValues<T>()
{
return Enum.GetValues(typeof(T)).Cast<T>();
}
}
然后你可以简单地打电话:
Capabilities[] array = EnumHelper.GetValues<Capabilities>();
如果那不是你的意思,那么我不确定你的意思。
答案 3 :(得分:0)
你可以试试这个
foreach (PropertyInfo property in prs)
{
string[] enumValues = Enum.GetNames(property.PropertyType);
}
希望它有所帮助。