作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法得到 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/
我是一名优秀的程序员,十分优秀!