gpt4 book ai didi

c# - 通过反射获取 MemberInfo 的类型

转载 作者:IT王子 更新时间:2023-10-29 04:22:52 27 4
gpt4 key购买 nike

我正在使用反射加载具有项目类结构的 TreeView 。类中的每个成员都分配有自定义属性。

我在使用 MemberInfo.GetCustomAttributes() 获取类的属性时没有问题,但是我需要一种方法来确定类成员是否是自定义类然后需要解析自身返回自定义属性。

到目前为止,我的代码是:

MemberInfo[] membersInfo = typeof(Project).GetProperties();

foreach (MemberInfo memberInfo in membersInfo)
{
foreach (object attribute in memberInfo.GetCustomAttributes(true))
{
// Get the custom attribute of the class and store on the treeview
if (attribute is ReportAttribute)
{
if (((ReportAttribute)attribute).FriendlyName.Length > 0)
{
treeItem.Items.Add(new TreeViewItem() { Header = ((ReportAttribute)attribute).FriendlyName });
}
}
// PROBLEM HERE : I need to work out if the object is a specific type
// and then use reflection to get the structure and attributes.
}
}

是否有一种简单的方法来获取 MemberInfo 实例的目标类型,以便我可以适本地处理它?我觉得我遗漏了一些明显的东西,但我现在正在原地打转。

最佳答案

我认为如果你使用这个扩展方法你可以获得更好的性能:

public static Type GetUnderlyingType(this MemberInfo member)
{
switch (member.MemberType)
{
case MemberTypes.Event:
return ((EventInfo)member).EventHandlerType;
case MemberTypes.Field:
return ((FieldInfo)member).FieldType;
case MemberTypes.Method:
return ((MethodInfo)member).ReturnType;
case MemberTypes.Property:
return ((PropertyInfo)member).PropertyType;
default:
throw new ArgumentException
(
"Input MemberInfo must be if type EventInfo, FieldInfo, MethodInfo, or PropertyInfo"
);
}
}

应该适用于任何 MemberInfo,而不仅仅是 PropertyInfo。您可以从该列表中避免使用 MethodInfo,因为它本身不是底层类型(而是返回类型)。

在你的情况下:

foreach (MemberInfo memberInfo in membersInfo)
{
foreach (object attribute in memberInfo.GetCustomAttributes(true))
{
if (attribute is ReportAttribute)
{
if (((ReportAttribute)attribute).FriendlyName.Length > 0)
{
treeItem.Items.Add(new TreeViewItem() { Header = ((ReportAttribute)attribute).FriendlyName });
}
}

//if memberInfo.GetUnderlyingType() == specificType ? proceed...
}
}

我想知道为什么默认情况下这不是 BCL 的一部分。

关于c# - 通过反射获取 MemberInfo 的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15921608/

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