gpt4 book ai didi

c# - 如何从 IEnumerable 转换为 IEnumerable

转载 作者:行者123 更新时间:2023-12-03 19:08:52 25 4
gpt4 key购买 nike

有没有办法得到 IEnumerable<T>来自 IEnumerable没有reflection ,假设我在设计时知道类型?

我有这个

foreach(DirectoryEntry child in de.Children)
{
// long running code on each child object
}

我正在尝试启用并行化,就像这样

Parallel.ForEach(de.Children, 
(DirectoryEntry child) => { // long running code on each child });

但这不起作用,因为 de.Children 的类型是 DirectoryEntries .它实现了 IEnumerable但不是 IEnumerable<DirectoryEntry> .

最佳答案

实现这一点的方法是使用 .Cast<T>() extension method .

Parallel.ForEach(de.Children.Cast<DirectoryEntry>(), 
(DirectoryEntry child) => { // long running code on each child });

实现此目的的另一种方法是使用 .OfType<T>() extension method .

Parallel.ForEach(de.Children.OfType<DirectoryEntry>(), 
(DirectoryEntry child) => { // long running code on each child });

.Cast<T>() 之间存在细微差别和 .OfType<T>()

The OfType(IEnumerable) method returns only those elements in source that can be cast to type TResult. To instead receive an exception if an element cannot be cast to type TResult, use Cast(IEnumerable).

-- MSDN

此链接on the MSDN forums让我朝着正确的方向前进。

关于c# - 如何从 IEnumerable 转换为 IEnumerable<T>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13162741/

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