好的,这是基本背景。该程序连接到outlook / exchange并解析所有邮件消息以查看哪些是加密的。我想做的一件事是使用多线程来减少扫描消息所需的时间。
目前代码如下:
foreach (Object item in folder.Items) {
//Checks for encryption and gets needed info and updates count
}
我想改用Parallel.ForEach函数。我想知道如何设置它。我尝试将表达式设置为现在的样式,但是我得到一个错误,指出Object类型被用作变量。对此的任何帮助将不胜感激。
好的,我给出的布局似乎是正确的。代码现在看起来像这样:
Parallel.ForEach(folder.Items, item =>
{
//does stuff
});
我现在收到以下错误:
错误15方法的类型参数 System.Threading.Tasks.Parallel.ForEach(System.Collections.Concurrent.OrderablePartitioner, System.Action)” 无法从使用中推断出来。尝试指定类型参数 明确。
有什么想法吗?感谢您的帮助,非常感谢。
好的,我找到了这个网站:http://blogs.msdn.com/b/pfxteam/archive/2010/03/02/9971804.aspx,它给了我错误所需的答案。我只需要通过制作一个转换函数将集合更改为通用集合。
static IEnumerable<object> Cast(IEnumerable source)
{
foreach (object o in source)
yield return o;
}
然后将原件调整为
Parallel.ForEach(Cast(folder.Items), item =>
{
//does stuff
});
现在它运行没有错误。乌拉。
答案 0 :(得分:8)
这样的事情:
Parallel.For(0, folder.Items.Count - 1, delegate(int i) {
object item = folder.Items[i];
});
或使用ForEach:
Parallel.ForEach(folder.Items, item => {whatever you want to do with item})
注意:folder.Items必须实现IEnumerable
答案 1 :(得分:4)
假设这是正确的
foreach (Object item in folder.Items)
Process(item);
然后它变为
Parallel.ForEach (folder.Items, item => Process(item));