gpt4 book ai didi

c# - 如何在泛型集合中转换对象?

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

我需要将对象转换为通用集合,看:

var currentEntityProperties = currentEntity.GetType().GetProperties();

foreach (var currentEntityProperty in currentEntityProperties)
{
if (currentEntityProperty.PropertyType.GetInterfaces().Any(
x => x.IsGenericType &&
x.GetGenericTypeDefinition() == typeof(ICollection<>)))
{
var collectionType = currentEntityProperty.PropertyType.GetInterfaces().Where(
x => x.IsGenericType &&
x.GetGenericTypeDefinition() == typeof(ICollection<>)).First();

var argumentType = collectionType.GetGenericArguments()[0];

// now i need to convert the currentEntityProperty into a collection, something like that (this is wrong, so, what is thr right way?):
var currentCollection = (ICollection<argumentType.GetType()>)currentEntityProperty.GetValue(currentEntity, null);
}
}

我该怎么做?

Obs:我需要用这个集合调用另一个集合的 except 方法(我用与 currentCollection 相同的方式获得这个集合,使用 anotherEntityProperty.GetValue(anotherEntity, null))

var itens = currentCollection.Except(anotherCollection);

最佳答案

动态类型让您可以让编译器和 DLR 在这里完成所有工作:

dynamic currentCollection = ...;
dynamic anotherCollection = ...;
dynamic items = Enumerable.Except(currentCollection, anotherCollection);

在执行时,这将为您完成所有反射工作并选择最合适的类型参数。

关于c# - 如何在泛型集合中转换对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9520599/

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