gpt4 book ai didi

c# - Cast 集合值类型

转载 作者:行者123 更新时间:2023-11-30 14:01:04 26 4
gpt4 key购买 nike

我有一个 Collection<Lookup<int>> 类型的集合我想将其值转换为 Collection\Lookup<int?>>.执行此操作的最佳方法是什么?

谢谢

最佳答案

好吧,Lookup 是键控 IEnumerable 的集合;基本上是只读的 Dictionary<TKey, IEnumerable<TValue>> . Lookup<int>是荒谬的。

解决这个问题的最佳方法可能是将 Lookup 中的每个项目“取消分组”为具有可为 null 值的匿名键值对,然后重新分组这些项目。

例子:

var myCollectionOfNullableInts =
(from g in MyCollectionOfIntLookups
from v in g.Values
select new {g.Key, Value = (int?)v}
into l
group l by l.Key into g2
select g2).ToList();

结果集合应该是 List<Lookup<[your key type], int?>> .

关于c# - Cast 集合值类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9170056/

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