How can I use plinq to fill an array with strings returned from my "FormatStatus" Method?
Posted
by Justin
on Stack Overflow
See other posts from Stack Overflow
or by Justin
Published on 2010-04-22T23:59:03Z
Indexed on
2010/04/23
0:03 UTC
Read the original article
Hit count: 332
This is my first time playing around with linq and I can't quite figure out what I need to search on google to find out what I am doing wrong, so here I am.
Here is what I have so far:
var formattedStatuses =
(from status in _statusCollection
select FormatStatus(status)).AsParallel();
© Stack Overflow or respective owner