Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我第一次玩 linq,我不太清楚我需要在谷歌上搜索什么来找出我做错了什么,所以我来了。 这是我到目前为止所拥有的:
var formattedStatuses = (from status in _statusCollection select FormatStatus(status)).AsParallel();
var formattedStatus = from status in _statusCollection.AsParallel() select FormatStatus(status);