gpt4 book ai didi

带有枚举数组的 C# 反射

转载 作者:太空宇宙 更新时间:2023-11-03 13:49:12 27 4
gpt4 key购买 nike

我有一个带有自定义枚举的类:

public enum Capabilities{
PowerSave= 1,
PnP =2,
Shared=3, }

我的类(class)

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);

这可能吗?

最佳答案

下面应该做你想做的。

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);

关于带有枚举数组的 C# 反射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14242480/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com