gpt4 book ai didi

c# - 我如何知道 propertyInfo 是否属于 C# 中的 IList 类型?

转载 作者:太空宇宙 更新时间:2023-11-03 21:25:10 26 4
gpt4 key购买 nike

给定这个类:

public class SomeClass
{
public int SomeProperty { get; set; }
public IList<AnotherClass> MyList { get; set; }
}

还有这段代码:

SomeClass myClass = new SomeClass();

PropertyInfo[] properties = myClass.GetType().GetProperties();
for(int i = 0; i < properties.Length; i++)
{
//How can I figure that the current property is a collection/list?
}

我尝试过的事情:

bool a1 = properties[i].PropertyType.IsAssignableFrom(typeof(IList));
//false
bool a2 = properties[i].PropertyType.IsAssignableFrom(typeof(IList<>));
//false
bool a3 = typeof(IList).IsAssignableFrom(properties[i].PropertyType);
//false
bool a4 = typeof(IList<>).IsAssignableFrom(properties[i].PropertyType);
//false
bool a5 = properties[i].PropertyType.Equals(typeof(IList));
//false
bool a6 = properties[i].PropertyType.Equals(typeof(IList<>));
//false
bool a7 = properties[i].PropertyType.IsSubclassOf(typeof(IList));
//false
bool a8 = properties[i].PropertyType.IsSubclassOf(typeof(IList<>));
//false
bool a9 = properties[i].PropertyType is IList;
//false
bool a0 = typeof(ICollection<>).IsAssignableFrom(properties[i].PropertyType);
//false

PropertyType.GetType() 加上以上所有内容。我该如何解决这个问题?

最佳答案

您可以使用 GetGenericTypeDefinition

if(properties[i].PropertyType.IsGenericType &&
properties[i].PropertyType.GetGenericTypeDefinition() == typeof(IList<>))

这将为所有 IList<> 返回 true types.If you want to check for others, ( ICollection , IEnumerable etc.) 你也可以对他们做同样的检查。

关于c# - 我如何知道 propertyInfo 是否属于 C# 中的 IList 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27494338/

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